AdSpyder

AdSpyder

Dominate with Adspyder: Track rivals, craft compelling ad copies, and reach goals faster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AdSpyder",
  "version": "1.0.0",
  "description": "Dominate with Adspyder: Track rivals, craft compelling ad copies, and reach goals faster.",
  "action": {
    "default_title": "Adspyder",
    "default_icon": {
      "16": "Images/icon16.png",
      "32": "Images/icon32.png",
      "64": "Images/icon64.png"
    }
  },
  "icons": {
    "16": "Images/icon16.png",
    "32": "Images/icon32.png",
    "64": "Images/icon64.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/container.js"
      ],
      "css": [
        "content/container.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}