browser-extension/extension/manifest-firefox.json

28 lines
630 B
JSON

{
"manifest_version": 2,
"name": "TubeArchivist Companion",
"description": "Interact with your selfhosted TA server.",
"version": "0.0.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"]
}
}