AdBlock Guard

AdBlock Guard

Have a fast and safe browsing experience without ads and annoying pop-ups! This extension blocks advertisements and disturbing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdBlock Guard",
  "version": "0.0.2",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "cookies",
    "alarms"
  ],
  "icons": {
    "16": "icons/adblock-16.png",
    "32": "icons/adblock-32.png",
    "48": "icons/adblock-48.png",
    "64": "icons/adblock-64.png",
    "128": "icons/adblock-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "libs/jquery.js",
      "lists/blackListUrls.js",
      "lists/whiteListUrls.js",
      "js/blocker.js",
      "background-min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "libs/jquery.js",
        "content_js/content_blocker.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/hide.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}