Block URLs, Domains or Keywords

Block URLs, Domains or Keywords

Site blocker. Blocks URL, Domain or URL with keywords. Redirect. It is the rework of my chrome extension! Not stable, but works!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.1",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "global.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_title": "URL Block",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "default_locale": "en"
}