-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
70 lines (70 loc) · 1.82 KB
/
Copy pathmanifest.json
File metadata and controls
70 lines (70 loc) · 1.82 KB
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
61
62
63
64
65
66
67
68
69
70
{
"name": "Bookmark HTMLizer",
"version": "1.0",
"manifest_version": 3,
"description": "Bookmark HTMLizer可以将您的书签内容转换为网页形式,使得您可以更方便地检索和浏览书签内容。",
"permissions": [
"storage",
"bookmarks"
],
"action": {
"default_icon": "images/icon32.png",
"default_title": "Bookmark HTMLizer(书签助手)",
"default_popup": "bookmarks.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"host_permissions": [
"https://*/*",
"http://*/*"
],
"web_accessible_resources": [{
"resources": [
"images/fallback-image.png",
"images/icon16.png",
"images/icon32.png",
"images/icon48.png",
"images/icon128.png",
"images/save.png",
"images/search.png",
"images/tags.png",
"images/website.png",
"css/chrome_shared.css",
"css/widgets.css",
"bookmarks.css",
"bookmarks.js",
"options.js",
"popup.js",
"background.js",
"*.ico"
],
"matches": [
"<all_urls>"
]
}],
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"activate_extension": {
"suggested_key": {
"default": "Alt+T"
},
"description": "open in new tabs"
},
"_execute_action": {
"suggested_key": {
"default": "Alt+R"
}
}
}
}