AdGone Ad Blocker

AdGone Ad Blocker

The best way to stop ads is to use AdGone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "html/Background.html"
  },
  "browser_action": {
    "default_icon": {
      "48": "images/x48/icon.png",
      "128": "images/x128/icon.png"
    },
    "default_popup": "html/Menu.html",
    "default_title": "__MSG_app_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/cs/lp.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*.adgone.org/*",
        "https://*.adgone.org/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/cs/yt.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "js/cs/premPitchedHTML.js",
        "js/cs/premPitched.js",
        "js/cs/native.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/fb.css"
      ],
      "js": [
        "js/cs/fb.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; font-src 'self' ",
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "48": "images/x48/icon.png",
    "128": "images/x128/icon.png"
  },
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "unlimitedStorage",
    "cookies",
    "alarms",
    "notifications",
    "idle"
  ],
  "version": "1.2.3",
  "web_accessible_resources": [
    "html/*",
    "js/*",
    "css/*",
    "fonts/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}