v3 manifest for chrome v2 for firefox

This commit is contained in:
simon 2022-04-02 12:08:51 +07:00
parent d16c7ab3e1
commit 21ef37041e
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
2 changed files with 26 additions and 0 deletions

View 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"
}
}