Domain Whitelist

Domain Whitelist

Ultimate blocker which says no to every network packet until you explicitly allow it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Domain Whitelist",
  "description": "Ultimate blocker which says no to every network packet until you explicitly allow it.",
  "version": "1.1.6",
  "icons": {
    "16": "icon/icon-16.png",
    "32": "icon/icon-32.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icon/icon-19.png",
      "38": "icon/icon-38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Domain Whitelist"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "js/config.js",
      "js/fn.js",
      "js/storage-local.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "*://*/*"
  ]
}