YouTube Focus

YouTube Focus

Three different ways to deal with Youtube recommendations: 1) Focus mode: allows three recommended videos at the "up next" list. 2) Brain Mode: disable all the recommendations 3) Default mode: You can allow the recommendations whenever you want.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Focus",
  "version": "1.4",
  "description": "Disable the Youtube recommendations, hepling you to get a more focused expirience at youtube.com",
  "author": "Andrei Costa and João Paulo Buchholz",
  "homepage_url": "https://github.com/Jompa14/YouTube_Focus/tree/master",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "button/Focus48.png",
    "96": "button/Focus96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "*://*.youtube.com/*",
    "storage"
  ],
  "browser_action": {
    "default_icon": "button/Focus48.png",
    "default_title": "YouTube Focus",
    "default_popup": "popup/youtube_focus.html"
  }
}