mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-05 03:30:12 +00:00
30 lines
649 B
JSON
30 lines
649 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "TubeArchivist Companion",
|
|
"description": "Interact with your selfhosted TA server.",
|
|
"version": "0.1.2",
|
|
"icons": {
|
|
"48": "/images/icon.png",
|
|
"128": "/images/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"cookies"
|
|
],
|
|
"host_permissions": [
|
|
"https://*.youtube.com/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://www.youtube.com/*"],
|
|
"js": ["script.js"]
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
}
|