forked from muan/github-gmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.16 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.16 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
{
"name": "Helper for GitHub notifications in Gmail",
"short_name": "helpergithubgmail",
"version": "0.9.0",
"manifest_version": 2,
"description": "Add links to GitHub threads and shortcuts to your Gmail interface.",
"homepage_url": "http://github.com/muan/github-gmail",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"commands": {
"open-link": {
"suggested_key": {
"default": "Ctrl+G",
"mac": "MacCtrl+G"
},
"description": "Open link"
},
"open-link-in-background": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "MacCtrl+B"
},
"description": "Open link in background"
},
"mute-link": {
"suggested_key": {
"default": "Ctrl+H",
"mac": "MacCtrl+H"
},
"description": "Mute thread"
}
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"css": [
"src/inject/inject.css"
],
"js": [
"src/inject/inject.js"
]
}
]
}