yt-addiction-control/manifest.json

25 lines
675 B
JSON
Raw Normal View History

2019-06-29 19:47:18 +00:00
{
2019-07-10 10:27:56 +00:00
"description": "Enables you to fight your youtube addiction by hiding video suggestions and related 'features' of YouTube's website. If you really want to, you can temporarily unhide those elements.",
2019-06-29 19:47:18 +00:00
"manifest_version": 2,
2019-07-10 09:58:19 +00:00
"name": "YT addiction control",
2022-09-14 16:40:13 +00:00
"version": "0.2.0",
2019-07-10 10:27:56 +00:00
"homepage_url": "https://gitlab.com/arnekeller/yt-addiction-control",
2019-06-29 19:47:18 +00:00
2019-07-10 09:58:19 +00:00
"icons": {
"48": "icons/ytac.svg"
},
2019-06-29 19:47:18 +00:00
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["youtube-addiction-control-extension-firefox.js"]
}
],
"browser_action": {
"default_icon": "icons/ytac.svg",
"default_title": "YT Addiction Control",
"default_popup": "popup/control.html"
}
}