-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
executable file
·59 lines (59 loc) · 1.63 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
{
"name": "Yawas",
"author": "Laurent Denoue",
"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": "yawas-background.js"},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"exclude_matches": ["*://*.slack.com/*","*://web.whatsapp.com/*","*://www.google.com/bookmarks/*","*://accounts.google.com/*"],
"js": ["yawas-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": "Yawas",
"default_icon": "yawas_on_128.png",
"default_popup": "options.html"
},
"icons": {
"128": "yawas_on_128.png"
},
"commands": {
"yawas-yellow": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Alt+Shift+Y"
},
"description": "Yawas Yellow"
},
"yawas-red": {
"suggested_key": {
"default": "Ctrl+Shift+R",
"mac": "Alt+Shift+R"
},
"description": "Yawas Red"
},
"yawas-blue": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Alt+Shift+B"
},
"description": "Yawas Blue"
},
"yawas-green": {
"suggested_key": {
"default": "Ctrl+Shift+G",
"mac": "Alt+Shift+G"
},
"description": "Yawas Green"
}
}
}