1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
"manifest_version": 3,
"name": "Hoarder",
"description": "An extension to bookmark links to hoarder.app",
"version": "1.2.1",
"icons": {
"16": "public/logo-16.png",
"48": "public/logo-48.png",
"128": "public/logo-128.png"
},
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "src/background/background.ts"
},
"options_ui": {
"page": "index.html#options",
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "addon@hoarder.app"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": ["storage", "tabs", "contextMenus"]
}
|