Kill Switch

Kill Switch

An extension to prevent access to websites depending on your public IP address. Icon from flaticon.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kill Switch",
  "short_name": "Kill Switch",
  "description": "An extension to prevent access to websites depending on your public IP address. Icon from flaticon.com.",
  "version": "1.11",
  "version_name": "1.0 beta",
  "author": "github.com/maxisme",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "48": "/img/icon-48x48-red.png",
    "128": "/img/icon-128x128-red.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "options_ui": {
    "page": "/html/options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "web_accessible_resources": [
    "src/options/options.html"
  ],
  "browser_action": {
    "default_icon": "/img/icon-48x48-grey.png",
    "default_popup": "/html/popup.html",
    "default_title": "Kill Switch"
  }
}