browser-extension/extension/manifest-chrome.json

30 lines
649 B
JSON
Raw Normal View History

{
2022-04-02 05:08:51 +00:00
"manifest_version": 3,
"name": "TubeArchivist Companion",
2022-04-07 13:32:22 +00:00
"description": "Interact with your selfhosted TA server.",
2022-07-03 09:58:39 +00:00
"version": "0.0.3",
"icons": {
2022-04-02 05:08:51 +00:00
"48": "/images/icon.png",
"128": "/images/icon128.png"
},
2022-04-02 05:08:51 +00:00
"action": {
"default_popup": "index.html"
},
"permissions": [
2022-06-20 10:35:57 +00:00
"storage",
"cookies"
],
"host_permissions": [
2022-06-20 11:34:27 +00:00
"https://*.youtube.com/*"
],
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["script.js"]
}
],
"background": {
2022-04-02 05:08:51 +00:00
"service_worker": "background.js"
}
}