-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
92 lines (84 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"manifest_version": 3,
"minimum_chrome_version": "123",
"offline_enabled": true,
"default_locale": "en",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"short_name": "markClipper",
"version": "1.0.11",
"author": "NoteRail",
"icons": {
"128": "icon-128.png",
"24": "icon-24.png"
},
"action": {
"default_title": "__MSG_open_markclipper__",
"default_popup": "popup/index.html"
},
"options_page": "options/index.html",
"side_panel": {
"default_path": "panel/index.html"
},
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"windows": "Ctrl+Shift+X",
"mac": "Ctrl+Shift+X",
"linux": "Ctrl+Shift+X"
}
},
"screenshot": {
"suggested_key": {
"default": "Alt+S"
},
"description": "__MSG_capture_screenshot__"
},
"multi_select_text": {
"suggested_key": {
"default": "Alt+M"
},
"description": "__MSG_multi_select_text__"
}
},
"web_accessible_resources": [
{
"resources": [
"scripts/highlighter/Highlighter.js",
"scripts/highlighter/highlighterCmd.js",
"scripts/highlighter/HighlightRange-3C6JRVT3.js",
"scripts/clip-article/auto-clip-article.js",
"scripts/generator/enums.js",
"scripts/generator/md-generator.js",
"scripts/generator/md-txt-generator.js",
"scripts/screenshot/crop-box-RFCKS4QZ.js",
"scripts/screenshot/shot-cropper-7YRZYKE2.css",
"scripts/toast-script.js"
],
"matches": ["<all_urls>"]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_request_header",
"enabled": true,
"path": "./request_header.json"
}
]
},
"permissions": [
"sidePanel",
"contextMenus",
"declarativeNetRequestWithHostAccess",
"activeTab",
"scripting",
"storage"
],
"optional_host_permissions": ["<all_urls>"]
}