Zen YouTube: Distraction free youtube

Zen YouTube: Distraction free youtube

Removes feed and recommendations from YouTube so that you can have a distraction free focused session

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zen YouTube: Distraction free youtube",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "Removes feed and recommendations from YouTube so that you can have a distraction free focused session",
  "homepage_url": "https://github.com/vishnugt/Zen-Youtube",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "https://www.youtube.com/*",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "all_frames": true
    }
  ]
}