-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (30 loc) · 766 Bytes
/
manifest.json
File metadata and controls
40 lines (30 loc) · 766 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
40
//http://code.google.com/chrome/extensions/manifest.html
{
// Required
"name": "MODium",
"version": "0.1",
// Recommended
"description": "A newtab replacement for Markit On Demand.",
//"browser_action": {
//"default_icon": "images/icon19.png", // optional
//"default_title": "MODium" // optional; shown in tooltip
//},
/*
"icons": {
"128": "./img/icon128.png",
"16": "./img/icon16.png",
"48": "./img/icon48.png"
},*/
"chrome_url_overrides": {
"newtab":"index.html"
},
"permissions": [
"bookmarks",
"history",
"chrome://favicon/",
"tabs",
"management"
],
//"options_page": "options.html",
"homepage_url": "http://dev.markitondemand.com"
}