mirror of
https://codeberg.org/Nero/InviTube.git
synced 2024-11-19 22:53:39 +00:00
44 lines
757 B
JSON
44 lines
757 B
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"name": "InviTube",
|
||
|
"author": "Indogermane",
|
||
|
"version": "1.0",
|
||
|
"description": "Redirect YouTube to Invidious.",
|
||
|
"background": {
|
||
|
"scripts": ["background.js"]
|
||
|
},
|
||
|
|
||
|
"options_ui": {
|
||
|
"page": "options/options.html"
|
||
|
},
|
||
|
|
||
|
"icons": {
|
||
|
"800": "icons/Icon.png"
|
||
|
},
|
||
|
|
||
|
"browser_action": {
|
||
|
"browser_style": true,
|
||
|
"default_icon": "icons/piped.png"
|
||
|
},
|
||
|
|
||
|
"page_action": {
|
||
|
"default_icon": "icons/youtube.png",
|
||
|
"default_title": "Open on YouTube"
|
||
|
},
|
||
|
|
||
|
"permissions": [
|
||
|
"webRequest",
|
||
|
"webRequestBlocking",
|
||
|
"<all_urls>",
|
||
|
"storage",
|
||
|
"tabs"
|
||
|
],
|
||
|
|
||
|
"browser_specific_settings": {
|
||
|
"gecko": {
|
||
|
"id": "InviTube@Indogermane",
|
||
|
"strict_min_version": "79.0"
|
||
|
}
|
||
|
}
|
||
|
}
|