youtube-unhookedplusplus/manifest.json

26 lines
546 B
JSON
Raw Normal View History

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": [
{
"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"
]
}