FENSE Security

FENSE Security

A simple extension to easily block distracting websites and urls for Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "FENSE Security",
  "description": "A simple extension to easily block distracting websites and urls for Google Chrome.",
  "author": "TMA Solution",
  "version": "1.0",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "data/*.json",
    "scripts/*.js",
    "html/*.html"
  ],
  "browser_action": {
    "default_popup": "html/routingPage.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "64": "images/64.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js",
      "scripts/config.js",
      "scripts/global.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "activeTab",
    "tabs",
    "notifications",
    "<all_urls>"
  ],
  "devtools_page": "html/index.html"
}