AdFr.ee

AdFr.ee

AdFr.ee is a Chrome extension to clean Estonian sites of the banner overload (+some added treats). Currently supported sites: *…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdFr.ee",
  "version": "0.1.8",
  "manifest_version": 2,
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.delfi.ee/*"
      ],
      "css": [
        "css/delfi.css"
      ]
    },
    {
      "matches": [
        "*://*.aripaev.ee/*"
      ],
      "css": [
        "css/aripaev.css"
      ]
    },
    {
      "matches": [
        "*://lpdigileht.epl.ee/digi/*",
        "*://ajaleht.epl.ee/digi/*",
        "*://ajaleht.ekspress.ee/digi/*",
        "*://ajaleht.maaleht.ee/*"
      ],
      "css": [
        "css/epl.css"
      ]
    },
    {
      "matches": [
        "*://*.postimees.ee/*"
      ],
      "css": [
        "css/postimees.css"
      ]
    },
    {
      "matches": [
        "*://*.kanal2.ee/*"
      ],
      "js": [
        "js/kanal2.js"
      ],
      "run_at": "document_end"
    }
  ]
}