2021-03-13 16:24:16 +01:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Tubio - Companion Extension",
|
|
|
|
"version": "1.0",
|
|
|
|
|
|
|
|
"icons": {
|
|
|
|
"16": "icon/16.png",
|
|
|
|
"48": "icon/48.png",
|
|
|
|
"128": "icon/128.png"
|
|
|
|
},
|
|
|
|
|
2021-03-13 17:27:51 +01:00
|
|
|
"browser_action": {
|
|
|
|
"default_popup": "popup/index.html"
|
|
|
|
},
|
|
|
|
|
2021-03-13 16:24:16 +01:00
|
|
|
"permissions": [
|
|
|
|
"background",
|
|
|
|
"contextMenus",
|
|
|
|
"webRequest",
|
2021-03-13 18:24:26 +01:00
|
|
|
"windows",
|
|
|
|
"tabs",
|
2021-03-13 17:27:51 +01:00
|
|
|
"storage",
|
2021-03-13 16:24:16 +01:00
|
|
|
"*://*/*"
|
|
|
|
],
|
|
|
|
|
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"lib/axios.js",
|
2021-03-13 18:24:26 +01:00
|
|
|
"queueDownload.js",
|
2021-03-13 16:24:16 +01:00
|
|
|
"background.js"
|
|
|
|
]
|
2021-03-13 18:24:26 +01:00
|
|
|
}
|
2021-03-13 16:24:16 +01:00
|
|
|
}
|