39 lines
802 B
JSON
39 lines
802 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/webextension",
|
|
"manifest_version": 2,
|
|
"name": "Queue",
|
|
"description": "A WebExtension for queueing links.",
|
|
"version": "0.2.0",
|
|
"permissions": [
|
|
"contextMenus",
|
|
"storage",
|
|
"tabs"
|
|
],
|
|
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'",
|
|
"web_accessible_resources": [
|
|
"assets/**"
|
|
],
|
|
"icons": {
|
|
"128": "assets/queue.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"128": "assets/queue.png"
|
|
}
|
|
},
|
|
"options_ui": {
|
|
"page": "options/index.html",
|
|
"open_in_tab": true
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background-scripts/initialize.ts"
|
|
]
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "{c3560e6b-00e5-4ab3-b89e-8a54ee5b2c9f}"
|
|
}
|
|
}
|
|
}
|