YT Distraction Remover

YT Distraction Remover

Removes all recommendations from Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YT Distraction Remover",
  "version": "0.1.0",
  "author": "Gagan Rai (@fuzzknob)",
  "description": "Removes all recommendations from youtube",
  "icons": {
    "38": "assets/inverted.png",
    "48": "assets/48x48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "YT Distraction Remover",
    "default_icon": "assets/inverted.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4cc797be-aa89-4d60-bcbd-9d493a6b3800}"
    }
  }
}