-
Notifications
You must be signed in to change notification settings - Fork 28
/
manifest.json
executable file
·74 lines (67 loc) · 1.7 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
{
"name": "Anki Quick Adder",
"version": "2.0.5",
"short_name": "Anki Adder",
"description": "This extension provides the ability to create anki cards directly from Google Chrome on your Anki Desktop.",
"background":{
"scripts": ["lib/common/js/jquery-3.3.1.min.js","eventPage.js"],
"persistent": false
},
"permissions": [
"storage",
"notifications",
"contextMenus",
"activeTab",
"http://localhost/"
],
"browser_action": {
"default_icon": "icon-64.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-64.png",
"128": "icon-128.png"
},
"web_accessible_resources": [
"icon-64.png",
"src/importFile.js",
"src/editCardModal.js",
"src/editCardModel.css",
"popup.html#tabs-2"
],
"options_page": "popup.html#tabs-2",
"commands": {
"add-to-first-field": {
"suggested_key": {
"default": "Alt+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Add select Text to first Field"
},
"add-to-second-field": {
"suggested_key": {
"default": "Alt+Shift+2",
"windows": "Alt+Shift+2",
"mac": "Alt+Shift+2"
},"description": "Add select Text to second Field"
},
"add-to-third-field": {
"suggested_key": {
"default": "Alt+Shift+3",
"windows": "Alt+Shift+3",
"mac": "Alt+Shift+3"
},"description": "Add select Text to third Field"
},
"submit-data-to-popup": {
"suggested_key": {
"default": "Alt+Shift+4",
"windows": "Alt+Shift+4",
"mac": "Alt+Shift+4"
},
"description": "Submit Data"
}
},
"manifest_version": 2
}