-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
50 lines (50 loc) · 1.21 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.3.3",
"author": "Martin Pecka",
"homepage_url": "https://github.com/peci1/more-snooze",
"default_locale": "en",
"icons": {
"32": "skin/icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0",
"strict_max_version": "128.*"
}
},
"experiment_apis": {
"WindowListener": {
"schema": "api/WindowListener/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["WindowListener"]],
"script": "api/WindowListener/implementation.js"
}
},
"NotifyTools": {
"schema": "api/NotifyTools/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["NotifyTools"]],
"script": "api/NotifyTools/implementation.js",
"events": ["startup"]
}
}
},
"permissions" : ["storage"],
"background": {
"scripts": [
"/content/fields.js",
"/content/localStorageHandler.js",
"background.js"
]
},
"options_ui": {
"page": "content/options-dialog.html",
"open_in_tab": false
}
}