For now just removes sugestions from the youtube homepage
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Tube-hider",
"version": "0.1.2",
"description": "For now just removes sugestions from the youtube homepage",
"icons": {
"16": "./src/icons/lurker-16.png",
"24": "./src/icons/lurker-24.png",
"32": "./src/icons/lurker-32.png",
"64": "./src/icons/lurker-64.png",
"128": "./src/icons/lurker-128.png",
"256": "./src/icons/lurker-256.png",
"512": "./src/icons/lurker-512.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"./src/js/tube-hider.js"
]
},
{
"matches": [
"*://*.youtube.com/"
],
"js": [
"./src/js/tube-hider-home.js"
]
}
]
}