IHA

IHA

Stifle Ads (I Hate Ads) tries to keep ads from being a bother.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "IHA",
  "description": "Stifle Ads (I Hate Ads) tries to keep ads from being a bother.",
  "version": "1.03",
  "permissions": [
    "tabs",
    "notifications",
    "http://*/",
    "https://*/",
    "storage",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Stifle adverts",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "iha_16.png",
    "32": "iha_32.png",
    "48": "iha_48.png",
    "128": "iha_128.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "iha.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}