AdFly Skipper for Edge

AdFly Skipper for Edge

Skip AdF.ly shortened links, Skip those malware ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "/js/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "/img/icon-button.png",
    "default_popup": "/html/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "/js/script.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "/js/url.js",
        "/js/ad.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "description": "Skip AdF.ly shortened links, Skip those malware ads.",
  "icons": {
    "16": "/img/icon-16.png",
    "48": "/img/icon-48.png",
    "128": "/img/icon-128.png"
  },
  "manifest_version": 2,
  "name": "AdFly Skipper for Edge",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "AdFly Skipper",
  "version": "4.2.6",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}