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