-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
48 lines (44 loc) · 1.39 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
{
/****************************************************************************
* Meta-information
*/
"name": "[EXTENSION NAME GOES HERE]",
"description": "[EXTENSION DESCRIPTION GOES HERE]",
"version": "0.1",
"manifest_version": 2,
/****************************************************************************
* Icons
*/
"icons": {
"16": "icons/16.png",
"19": "icons/19.png",
"48": "icons/48.png",
"129": "icons/128.png"
},
/****************************************************************************
* Browser Action:
* - http://developer.chrome.com/trunk/extensions/browserAction.html
*/
"browser_action": {
"default_icon": "icons/19.png", // optional
"default_title": "[POPUP TITLE]", // optional; shown in tooltip
"default_popup": "src/popup.html" // optional
},
/****************************************************************************
* Event Page:
* - http://developer.chrome.com/trunk/extensions/event_pages.html
*/
"background": {
"persistent": false,
"scripts": [
"src/eventPage.js"
]
},
/****************************************************************************
* Permissions:
* - https://developer.chrome.com/trunk/extensions/manifest.html#permissions
*/
"permissions": [
"storage" // https://developer.chrome.com/trunk/extensions/storage.html
]
}