YouTube Recommendation Decliner

YouTube Recommendation Decliner

Declines video recommendations from YouTube to help lessen procrastination.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Recommendation Decliner",
  "short_name": "YT Decliner",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "Declines video recommendations from YouTube to help lessen procrastination.",
  "icons": {
    "16": "/images/icon_16.png",
    "128": "/images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "all_frames": true,
      "js": [
        "/js/contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "/images/icon_128.png",
    "default_popup": "/html/popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ]
}