forked from JeromeDane/Gmail-Signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 1.05 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
{
"update_url":"http://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "__MSG_extName__",
"permissions": [
"bookmarks",
"background"
],
"default_locale": "en",
"version": "1.18.8",
"description": "__MSG_extDesc__",
"options_page": "GoogleChrome/options.html",
"icons": {
"48": "chrome/skin/icon48.png",
"128": "chrome/skin/icon128.png"
},
"background": {
"scripts": ["GoogleChrome/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["http://mail.google.com/*", "https://mail.google.com/*"],
"run_at": "document_start",
"all_frames": false,
"js": [
"chrome/content/com/BlankCanvas/BrowserDetect.js",
"chrome/content/com/jQuery/jquery.min.js",
"chrome/content/com/BlankCanvas/jQuery.js",
"chrome/content/com/BlankCanvas/GmailSignatures.js",
"chrome/content/com/BlankCanvas/GmailAPI.js",
"chrome/content/com/BlankCanvas/md5.js",
"chrome/content/com/BlankCanvas/GmailSigInstance.js",
"GoogleChrome/GmailInit.js"
]
}
]
}