2022-04-01 01:40:39 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "TubeArchivist Companion",
|
2022-04-07 13:32:22 +00:00
|
|
|
"description": "Interact with your selfhosted TA server.",
|
2022-06-03 10:07:48 +00:00
|
|
|
"version": "0.0.2",
|
2022-04-01 01:40:39 +00:00
|
|
|
"icons": {
|
|
|
|
"128": "/images/icon128.png"
|
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": "/images/icon.png",
|
|
|
|
"default_popup": "index.html"
|
|
|
|
},
|
|
|
|
"permissions": [
|
2022-04-04 05:29:39 +00:00
|
|
|
"storage"
|
2022-04-01 01:40:39 +00:00
|
|
|
],
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["https://www.youtube.com/*"],
|
|
|
|
"js": ["script.js"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"scripts": ["background.js"]
|
|
|
|
}
|
|
|
|
}
|