PT QA HELPER

PT QA HELPER

Very useful QA tool for copying test results and viewing the build information of the current browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PT QA HELPER",
  "short_name": "QA Helper",
  "description": "Very useful QA tool for copying test results and viewing the build information of the current browser tab.",
  "version": "4.2.1",
  "icons": {
    "48": "assets/icon-qa.png",
    "128": "assets/icon-qa.png"
  },
  "browser_action": {
    "default_icon": "assets/icon-qa.png",
    "default_title": "PT QA Helper"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}