PubGuru Ad Inspector

PubGuru Ad Inspector

Troubleshoot your ad tags and scale your revenue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PubGuru Ad Inspector",
  "version": "1.0.15",
  "manifest_version": 2,
  "description": "Troubleshoot your ad tags and scale your revenue.",
  "homepage_url": "https://www.pubguru.com",
  "icons": {
    "128": "icons/nicon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/content-script.js",
        "templates/popup.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icons/nicon128.png",
    "default_title": "PubGuru Ad Inspector",
    "default_popup": "templates/popup.html"
  },
  "permissions": [
    "storage",
    "https://*/*",
    "http://*/*",
    "activeTab"
  ],
  "web_accessible_resources": [
    "js/content-script.js"
  ],
  "externally_connectable": {
    "matches": [
      "*://ai.pubguru.com/*"
    ]
  }
}