Youtube Defender

Youtube Defender

Defend yourself against the YouTube algorithm.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Defender",
  "version": "1.0",
  "description": "Defend yourself against the YouTube algorithm.",
  "permissions": [
    "tabs",
    "declarativeContent",
    "storage",
    "https://www.youtube.com/*"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo_16.png",
      "32": "images/logo_32.png",
      "48": "images/logo_64.png",
      "128": "images/logo_128.png"
    }
  },
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "48": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "manifest_version": 2
}