Ad Radar

Ad Radar

An extension that shows you information about the ads you see online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ad Radar",
  "description": "An extension that shows you information about the ads you see online.",
  "version": "1.0.2",
  "icons": {
    "128": "assets/icons/color-128.png"
  },
  "homepage_url": "https://github.com/hestiaAI/ad-radar",
  "author": "hestia.ai",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ],
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "assets/icons/color-128.png"
    },
    "default_title": "",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/injected.bundle.js"
  ]
}