-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·58 lines (57 loc) · 1.46 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
{
"name": "Web-Annotator",
"manifest_version": 3,
"version": "7.4.1",
"description": "Highlight Web pages; stored in your browser bookmarks, searchable, and recreated automatically when you revisit a page",
"background": {"service_worker": "background.js"},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content-script.js"],
"all_frames": true
}
],
"web_accessible_resources": [{
"resources": ["localsearch.html","localedit.html"],
"matches": ["<all_urls>"]
}],
"permissions": ["activeTab","storage","contextMenus","tabs","bookmarks"],
"action": {
"default_title": "text-Highlighter",
"default-icon":"redW.png",
"default_popup": "options.html"
},
"icons": {
"128": "redW.png"
},
"commands": {
"text-yellow": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Alt+Shift+Y"
},
"description": "text Yellow"
},
"text-red": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "Alt+Shift+R"
},
"description": "text Red"
},
"text-blue": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Alt+Shift+B"
},
"description": "text Blue"
},
"text-green": {
"suggested_key": {
"default": "Ctrl+Shift+G",
"mac": "Alt+Shift+G"
},
"description": "text Green"
}
}
}