-
Notifications
You must be signed in to change notification settings - Fork 15
/
manifest.json
60 lines (60 loc) · 1.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "__MSG_extName__",
"version": "3.6",
"description": "__MSG_extDesc__",
"manifest_version": 3,
"homepage_url": "https://chrome.google.com/webstore/detail/odhjcodnoebmndcihdedenkmdmklpihb",
"update_url": "http://clients2.google.com/service/update2/crx",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"16": "icon16.png",
"19": "icon.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "vBookmarks",
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+V",
"mac": "Command+Shift+V",
"chromeos": "Ctrl+Shift+V",
"linux": "Ctrl+Shift+V"
}
}
},
"permissions": [
"bookmarks",
"tabs",
"favicon"
],
"web_accessible_resources": [{
"resources": [ "_favicon/*" ],
"matches": ["<all_urls>"],
"extension_ids": [ "*" ]
}],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "img-src 'self' data:; default-src 'self'; style-src 'self' 'unsafe-inline';"
},
"minimum_chrome_version": "88.0.0.0",
"default_locale": "en",
"omnibox": {
"keyword": "*"
}
}