AdLock - adblock & privacy protection

AdLock - adblock & privacy protection

This ad blocker blocks banners, pop-ups and all kinds of ads on websites, including video ads on Youtube, Crunchyroll, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AdLock - adblock & privacy protection",
  "short_name": "AdLock",
  "version": "0.1.3",
  "minimum_chrome_version": "69",
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "16": "img/icon16.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_title": "AdLock",
    "default_icon": "img/icon16.png",
    "default_popup": "./popup.html"
  },
  "web_accessible_resources": [],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}