forked from timbru31/quickjira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
73 lines (73 loc) · 1.65 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
{
"name": "Quick JIRA",
"short_name": "quiji",
"version": "0.11.2",
"manifest_version": 2,
"author": "Tim 'timbru31' Brust",
"description": "__MSG_appDesc__",
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"20": "images/icon20.png",
"25": "images/icon25.png",
"30": "images/icon30.png",
"32": "images/icon32.png",
"40": "images/icon40.png",
"48": "images/icon48.png",
"64": "images/icon64.png"
},
"default_popup": "html/popup.html",
"default_title": "__MSG_defaultTitle__"
},
"default_locale": "en",
"options_ui": {
"chrome_style": true,
"page": "html/options.html"
},
"permissions": ["activeTab", "contextMenus", "storage"],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png"
},
"commands": {
"open-ticket-in-current-tab": {
"description": "__MSG_openInCurrentTab__",
"suggested_key": {
"default": "Alt+K",
"windows": "Alt+K",
"mac": "Alt+K",
"chromeos": "Alt+K",
"linux": "Alt+K"
}
},
"open-ticket-in-new-tab": {
"description": "__MSG_openInNewTab__",
"suggested_key": {
"default": "Alt+Shift+K",
"windows": "Alt+Shift+K",
"mac": "Alt+Shift+K",
"chromeos": "Alt+Shift+K",
"linux": "Alt+Shift+K"
}
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"windows": "Ctrl+Shift+K",
"mac": "Command+Shift+K",
"chromeos": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K"
}
}
},
"omnibox": {
"keyword": "jira"
},
"background": {
"scripts": ["js/background.js"]
},
"minimum_chrome_version": "49"
}