2020-01-03 12:48:26 +01:00
|
|
|
{
|
|
|
|
"name": "Youtube UnHooked",
|
|
|
|
"version": "0.9",
|
|
|
|
"description": "Hides parts of Youtube that are unneeded/addictive: recommendations, related videos, comments.",
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
2020-01-16 21:35:32 +01:00
|
|
|
"run_at": "document_start",
|
2020-01-03 12:48:26 +01:00
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|