-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
63 lines (53 loc) · 1.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "2.0.0",
"author": "Tim Pollandt <[email protected]>",
"applications": {
"gecko": {
"id": "newtabhere@pollti",
"strict_min_version": "57.0a1"
}
},
"description": "__MSG_extensionDescription__",
"homepage_url": "https:/github.com/pollti/NewTabHere",
"icons": {
"48": "icons/logo.svg",
"96": "icons/logo.svg"
},
"permissions": [
"menus",
"tabs",
"storage"
],
"background": {
"scripts": ["src/background.js"]
},
"commands": {
"new-tab-here": {
"suggested_key": {
"default": "Ctrl+Y"
},
"description": "__MSG_keyboardDescNewTabAtCurrPos__"
}
},
"browser_action": {
"browser_style": true,
"default_icon": {
"48": "icons/logo.svg"
},
"theme_icons": [{
"light": "icons/logo-light.svg",
"dark": "icons/logo.svg",
"size": 48
}],
"default_title": "__MSG_NewTabHereButtonCaption__",
"default_area": "tabstrip"
},
"options_ui": {
"open_in_tab": false,
"browser_style": true,
"page": "opt/options.html"
},
"default_locale": "en"
}