forked from RealRaven2000/FiltaQuilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
59 lines (59 loc) · 1.59 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
{
"manifest_version" : 2,
"name" : "FiltaQuilla",
"description" : "Mail filter custom actions and searches",
"version" : "3.4pre53",
"default_locale": "en",
"author" : "R Kent James,Axel Grude",
"developer" : {
"name" : "Axel Grude,Pawel Tomulik",
"url" : "https://quickfilters.quickfolders.org/filtaquilla.html"
},
"applications" : {
"gecko" : {
"id" : "[email protected]",
"strict_min_version" : "74.0",
"strict_max_version" : "92.0a1"
}
},
"icons" : {
"32" : "skin/filtaquilla-32.png",
"64" : "skin/filtaquilla-64.png"
},
"background": {
"scripts": [
"filtaquilla-background.js"
]
} ,
"permissions": [
"messagesRead",
"notifications"
],
"experiment_apis": {
"WindowListener": {
"schema": "content/api/WindowListener/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["WindowListener"]],
"script": "content/api/WindowListener/implementation.js"
}
},
"NotifyTools": {
"schema": "content/api/NotifyTools/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["NotifyTools"]],
"script": "content/api/NotifyTools/implementation.js",
"events": ["startup"]
}
},
"LegacyPrefs": {
"schema": "content/api/LegacyPrefs/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["LegacyPrefs"]],
"script": "content/api/LegacyPrefs/implementation.js"
}
}
}
}