Hide Youtube

Hide Youtube

Hide Youtube in Office, College or restricted areas.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hide Youtube",
  "short_name": "HTube",
  "description": "Hide Youtube in Office, College or restricted areas.",
  "version": "1.0",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon_48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "lib/jquery.js",
        "youtube.js"
      ]
    },
    {
      "matches": [
        "http://www.youtube.com/*"
      ],
      "js": [
        "lib/jquery.js",
        "youtube.js"
      ]
    },
    {
      "matches": [
        "http://www.youtube.com/"
      ],
      "js": [
        "lib/jquery.js",
        "youtube.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "https://*/*",
    "http://*/*",
    "storage"
  ]
}