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
executable file
·39 lines (39 loc) · 938 Bytes
/
manifest.json
File metadata and controls
executable file
·39 lines (39 loc) · 938 Bytes
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
{
"name": "GitHub Notification Helper for Gmail",
"short_name": "GitHub4Gmail",
"version": "0.4.1",
"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"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"options_page": "src/options/index.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"css": [
"src/inject/inject.css"
]
},
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"js/jquery.js",
"src/inject/inject.js"
]
}
]
}