ytblockr

ytblockr

block ugly videos, chanels, users, anything from searches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ytblockr",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "block ugly videos, chanels, users, anything from searches",
  "homepage_url": "https://github.com/pixelass/ytBlockr",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "24": "icons/icon24.png",
    "38": "icons/icon38.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "bg/background.html",
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "https://youtube.com/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "ytBlockr",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/inject.js"
      ],
      "css": [
        "css/inject.css"
      ]
    }
  ]
}