Video Blocker

Video Blocker

Block YouTube videos from any channel you want.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "6.3",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "/images/icons/icon16.png",
    "19": "/images/icons/icon19.png",
    "32": "/images/icons/icon32.png",
    "38": "/images/icons/icon38.png",
    "48": "/images/icons/icon48.png",
    "64": "/images/icons/icon64.png",
    "128": "/images/icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "/images/icons/icon19.png",
      "38": "/images/icons/icon38.png"
    },
    "default_title": "__MSG_pageaction_title__",
    "default_popup": "/views/PageAction.html"
  },
  "author": "Lemonrice",
  "background": {
    "scripts": [
      "/scripts/background.build.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "/scripts/contentScript.build.js"
      ],
      "css": [
        "/styles/contentscript.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "/views/Options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "short_name": "__MSG_extension_short_name__",
  "web_accessible_resources": []
}