forked from AndersSahlin/MailCheckerPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
26 lines (26 loc) · 954 Bytes
/
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
{
"background_page": "background.html",
"browser_action": {
"default_icon": "icons/set1/not_logged_in.png",
"default_title": "Mail Checker Plus for Google Mail™",
"name": "Mail Checker Plus for Google Mail™",
"popup": {
"path": "popup.html"
}
},
"content_scripts": [ {
"all_frames": true,
"js": [ "src/mailto.js" ],
"matches": [ "http://*/*", "https://*/*" ]
} ],
"description": "Displays the number of unread messages in your Gmail and Google Apps inbox. Preview mail, read, delete, archive and mark as spam!",
"icons": {
"32": "img/icon_32.png",
"48": "img/icon_48.png",
"128": "img/icon_128.png"
},
"name": "Mail Checker Plus for Google Mail™",
"options_page": "options.html",
"permissions": [ "notifications", "tabs", "http://*/*", "https://*/*", "http://*.google.com/*", "https://*.google.com/*" ],
"version": "1.2.3.6"
}