YouTube paid promotion hider

YouTube paid promotion hider

Hide the "Includes paid promotion" banner on YouTube thumbnails

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube paid promotion hider",
  "description": "Hide the \"Includes paid promotion\" banner on YouTube thumbnails",
  "version": "1.0.1",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "options_ui": {
    "browser_style": false,
    "page": "options.html"
  },
  "host_permissions": [
    "*://*.youtube.com/*"
  ]
}