Ad Blocking Power

Ad Blocking Power

Show an Old Spice ad instead of a normal ad.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ad Blocking Power",
  "description": "Show an Old Spice ad instead of a normal ad.",
  "author": "Liam Mills",
  "version": "0.1",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icons/power-ad-blocker-16.png",
    "48": "icons/power-ad-blocker-48.png",
    "128": "icons/power-ad-blocker-128.png"
  },
  "browser_action": {
    "default_icon": "icons/power-ad-blocker-19.png",
    "default_title": "Power Ad Blocker Settings",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "power-ad-replacer.js"
      ]
    }
  ]
}