Switch Off

Switch Off

Switch Off from online distractions to increase productivity!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_desc__",
  "manifest_version": 2,
  "version": "1.3",
  "default_locale": "en",
  "minimum_chrome_version": "42",
  "icons": {
    "16": "switchoff_logo.16.png",
    "24": "switchoff_logo.24.png",
    "32": "switchoff_logo.32.png",
    "48": "switchoff_logo.48.png",
    "64": "switchoff_logo.64.png",
    "96": "switchoff_logo.96.png",
    "128": "switchoff_logo.128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "switchoff_logo.16.png",
      "24": "switchoff_logo.24.png",
      "32": "switchoff_logo.32.png",
      "48": "switchoff_logo.48.png",
      "64": "switchoff_logo.64.png",
      "96": "switchoff_logo.96.png",
      "128": "switchoff_logo.128.png"
    },
    "default_title": "__MSG_extension_desc__"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "alarms",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "selectbrowserobject.js",
      "background.js"
    ]
  }
}