Productive Youtube

Productive Youtube

Remove recommendations page, filter useless channels and speed up videos past 2x. Youtube at times can be very distracting with a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Productive Youtube",
  "version": "0.5.1",
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://www.youtube.ca/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "extension_icon.png"
  },
  "web_accessible_resources": [
    "redirect.html",
    "popup.html"
  ]
}