-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
executable file
·42 lines (42 loc) · 963 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "__MSG_extName__",
"version": "2.0",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"author": "Alex Cordonnier",
"homepage_url": "https://github.com/ajcord/Launchpage",
"default_locale": "en",
"background": {
"page": "html/launcher.html"
},
"options_page": "html/options.html",
"options_ui": {
"page": "html/options.html",
"chrome_style": true
},
"incognito": "spanning",
"offline_enabled": true,
"chrome_url_overrides": {
"newtab": "html/launcher.html"
},
"permissions": [
"management",
"declarativeContent",
"activeTab",
"storage",
"unlimitedStorage"
],
"icons": {
"128": "icons/icon_128.png",
"48": "icons/icon_48.png",
"32": "icons/icon_32.png",
"16": "icons/icon_16.png"
},
"page_action": {
"default_icon": {
"19": "icons/icon_19.png"
},
"default_title": "Add to Launchpage",
"default_popup": "html/add.html"
}
}