mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-05 11:40:13 +00:00
28 lines
630 B
JSON
28 lines
630 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "TubeArchivist Companion",
|
|
"description": "Interact with your selfhosted TA server.",
|
|
"version": "0.1.3",
|
|
"icons": {
|
|
"128": "/images/icon128.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "/images/icon.png",
|
|
"default_popup": "index.html"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"cookies",
|
|
"https://*.youtube.com/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://www.youtube.com/*"],
|
|
"js": ["script.js"]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
}
|