-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (71 loc) · 1.49 KB
/
manifest.json
File metadata and controls
71 lines (71 loc) · 1.49 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
71
{
"manifest_version": 3,
"name": "Ankur's Wiki Notes",
"version": "2.0.0",
"description": "Take notes in wiki markup fashion with a side panel, highlight text, and organize notes per page",
"permissions": [
"storage",
"sidePanel",
"contextMenus",
"activeTab",
"scripting",
"tabs",
"downloads"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["highlight.css"],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_title": "Open Ankur's Wiki Notes",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"commands": {
"open-sidepanel": {
"suggested_key": {
"default": "Ctrl+Shift+N"
},
"description": "Open Wiki Notes side panel"
},
"highlight-yellow": {
"suggested_key": {
"default": "Ctrl+Shift+H"
},
"description": "Highlight selection in yellow"
},
"search-notes": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Search all notes"
},
"quick-note": {
"suggested_key": {
"default": "Ctrl+Shift+Q"
},
"description": "Quick add note"
}
}
}