2020-11-11 17:17:37 +00:00
|
|
|
{
|
2022-03-20 18:02:37 +00:00
|
|
|
"manifest_version": 3,
|
2020-11-11 17:17:37 +00:00
|
|
|
"name": "Queue",
|
|
|
|
"description": "A WebExtension for queueing links.",
|
|
|
|
"permissions": [
|
|
|
|
"contextMenus",
|
|
|
|
"storage",
|
2022-03-14 22:58:05 +00:00
|
|
|
"tabs"
|
2020-11-11 17:17:37 +00:00
|
|
|
],
|
|
|
|
"icons": {
|
2022-03-05 13:10:45 +00:00
|
|
|
"128": "assets/queue.png"
|
2020-11-11 17:17:37 +00:00
|
|
|
},
|
2022-03-20 18:02:37 +00:00
|
|
|
"action": {
|
2020-11-11 17:17:37 +00:00
|
|
|
"default_icon": {
|
2022-03-05 13:10:45 +00:00
|
|
|
"128": "assets/queue.png"
|
2020-11-11 17:17:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"options_ui": {
|
2022-03-05 13:10:45 +00:00
|
|
|
"page": "options/index.html",
|
2020-11-11 17:17:37 +00:00
|
|
|
"open_in_tab": true
|
|
|
|
},
|
2022-03-05 13:10:45 +00:00
|
|
|
"background": {
|
2022-03-20 18:02:37 +00:00
|
|
|
"service_worker": "background-scripts/initialize.ts",
|
|
|
|
"type": "module"
|
2020-11-11 17:34:59 +00:00
|
|
|
}
|
2020-11-11 17:17:37 +00:00
|
|
|
}
|