2022-07-15 13:46:52 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Youtube to invidious",
|
|
|
|
"version": "0.1",
|
|
|
|
|
|
|
|
"description": "Change every youtube link to an invidious one",
|
|
|
|
|
|
|
|
"icons": {
|
|
|
|
"48": "icons/48.png"
|
|
|
|
},
|
|
|
|
"web_accessible_resources": ["icons/48.png"],
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["<all_urls>"],
|
|
|
|
"js": ["to-invidious.js"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"scripts": ["background.js"]
|
|
|
|
},
|
|
|
|
"options_ui": {
|
|
|
|
"page": "options.html"
|
|
|
|
},
|
|
|
|
|
|
|
|
"permissions": ["storage", "tabs"],
|
|
|
|
|
|
|
|
"browser_specific_settings": {
|
|
|
|
"gecko": {
|
2022-07-15 14:14:07 +00:00
|
|
|
"id": "11f63659fb336c2593b0f48375566cf66c5d8e12d@amine-louveau.fr"
|
2022-07-15 13:46:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|