QA Sidekick

QA Sidekick

The most efficient way for teams to manage product testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "QA Sidekick",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "1.1.0",
  "description": "The most efficient way for teams to manage product testing.",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./static/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "./browser-polyfill.js",
        "./static/js/content.js",
        "./jquery.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon-128.png"
    },
    "default_title": "QA Sidekick"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "browser-polyfill.js",
        "/static/*",
        "jquery.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}