URLs Manager - Websites Blocker and Labeller

URLs Manager - Websites Blocker and Labeller

Block or tag websites, URLs and domains!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "history"
  ],
  "options_page": "page_options.html",
  "background": {
    "scripts": [
      "background.js",
      "strings_options.js",
      "strings_content.js",
      "strings_popup.js",
      "functions_common.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "content.js",
        "functions_common.js",
        "strings_content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "The current page is useless? Click here!",
    "default_popup": "page_popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}