26 lines
546 B
JSON
26 lines
546 B
JSON
![]() |
{
|
||
|
"name": "Youtube UnHooked",
|
||
|
"version": "0.9",
|
||
|
"description": "Hides parts of Youtube that are unneeded/addictive: recommendations, related videos, comments.",
|
||
|
"content_scripts": [
|
||
|
{
|
||
|
"matches": ["https://www.youtube.com/*"],
|
||
|
"css": ["styles.css"],
|
||
|
"js": ["styles.js"]
|
||
|
}
|
||
|
],
|
||
|
"browser_specific_settings": {
|
||
|
"gecko": {
|
||
|
"id": "youtube-unhooked@ffffff.gov"
|
||
|
}
|
||
|
},
|
||
|
"manifest_version": 2,
|
||
|
"options_ui": {
|
||
|
"page": "options.html",
|
||
|
"browser_style": true
|
||
|
},
|
||
|
"permissions": [
|
||
|
"storage"
|
||
|
]
|
||
|
}
|