mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-22 03:30:14 +00:00
v3 manifest for chrome v2 for firefox
This commit is contained in:
parent
d16c7ab3e1
commit
21ef37041e
26
extension/manifest-chrome.json
Normal file
26
extension/manifest-chrome.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"manifest_version": 3,
|
||||||
|
"name": "TubeArchivist Companion",
|
||||||
|
"description": "Interact with your selhosted TA server.",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"icons": {
|
||||||
|
"48": "/images/icon.png",
|
||||||
|
"128": "/images/icon128.png"
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"default_popup": "index.html"
|
||||||
|
},
|
||||||
|
"permissions": [
|
||||||
|
"storage",
|
||||||
|
"tabs"
|
||||||
|
],
|
||||||
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"matches": ["https://www.youtube.com/*"],
|
||||||
|
"js": ["script.js"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"background": {
|
||||||
|
"service_worker": "background.js"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user