website blocker

website blocker

Block a site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "website blocker",
  "version": "1.0",
  "description": "Block a site",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking"
  ],
  "icons": {},
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "index.html",
    "default_title": "Background Changer"
  },
  "content_security_policy": "script-src 'self' 'sha256-XPXTT1UshpgwCgVqCHHlIsFwX/ez74PNQIN24esAYZs='; object-src 'self'",
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/jquery.min.js",
        "content/content.js"
      ],
      "css": [
        "public/style.css"
      ]
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "public/*"
  ]
}