-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
76 lines (76 loc) · 1.8 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
{
"name": "Evercuts",
"version": "1.13",
"description": "Keyboard shortcuts for the new Evernote UI",
"permissions": ["activeTab", "declarativeContent"],
"background": {
"scripts": ["content_scripts/background.js"],
"persistent": false
},
"page_action": {
"default_popup": "popup/index.html",
"default_icon": {
"16": "images/evers16.png",
"32": "images/evers32.png",
"48": "images/evers48.png",
"128": "images/evers128.png"
}
},
"icons": {
"16": "images/evers16.png",
"32": "images/evers32.png",
"48": "images/evers48.png",
"128": "images/evers128.png"
},
"commands": {
"search" : {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Search notes"
},
"fullscreen": {
"suggested_key": {
"default": "Alt+P"
},
"description": "Toggle fullscreen"
},
"deletenote": {
"suggested_key": {
"default": "Alt+Delete"
},
"description": "Delete current note"
},
"movenote": {
"suggested_key": {
"default": "Alt+M"
},
"description": "Move note to new notebook"
},
"opennote": {
"description": "Full screen current note in a new tab"
},
"copyinternallink": {
"description": "Copy current notes internal web link"
},
"copyinternalapplink": {
"description": "Copy current notes internal app link"
},
"insertMenu": {
"description": "Opens the insert menu"
},
"editTags": {
"description": "Edit the current notes tags"
},
"_execute_page_action": {
"description": "Show shorcuts and options"
}
},
"content_scripts": [
{
"matches": ["https://*.evernote.com/*"],
"js": ["content_scripts/contentScript.js"]
}
],
"manifest_version": 2
}