AB Tasty Debugger

AB Tasty Debugger

Debug A/B tests from AB Tasty. Open source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AB Tasty Debugger",
  "version": "1.3.2",
  "description": "Debug A/B tests from AB Tasty. Open source.",
  "action": {
    "default_title": "AB Tasty Debugger",
    "default_popup": "popup.html",
    "default_icon": "images/icon-32x32.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "images/icon-16x16.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/page-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}