Not Now Youtube

Not Now Youtube

This extension will one-click to hide your youtube recommendations so that you can concentrate on your work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "*://*.youtube.com/*",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "19": "19.png",
      "38": "38.png"
    },
    "default_title": "distraction is removed!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "css": [
        "hidden-recommendation.css"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  }
}