-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
manifest.json
41 lines (36 loc) · 936 Bytes
/
manifest.json
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
31
32
33
34
35
36
37
38
39
40
41
{
"manifest_version": 3,
"name": "floccus bookmarks sync",
"short_name": "floccus",
"version": "5.3.3",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
},
"default_locale": "en",
"permissions": ["alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"],
"optional_permissions": ["history"],
"host_permissions": [
"*://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"options_ui": {
"page": "dist/html/options.html",
"browser_style": false
},
"action": {
"browser_style": false,
"default_icon": {
"48": "icons/logo.png"
},
"default_title": "Open Floccus options",
"default_popup": "dist/html/options.html"
},
"background": {
"service_worker": "dist/js/background-script.js"
}
}