forked from jobisoft/quicktext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.08 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
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{8845E3B3-E8FB-40E2-95E9-EC40294818C4}",
"strict_min_version": "78.0",
"strict_max_version": "78.*"
}
},
"name": "Quicktext",
"version": "3.3",
"author": "John Bieling",
"homepage_url": "https://github.com/jobisoft/quicktext",
"default_locale": "en-US",
"description": "__MSG_extensionDescription__",
"icons": {
"32": "chrome/skin/icon.png"
},
"permissions" : ["storage"],
"background": {
"scripts": [
"/chrome/content/scripts/preferences.js",
"background.js"
]
},
"experiment_apis": {
"WindowListener": {
"schema": "api/WindowListener/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["WindowListener"]],
"script": "api/WindowListener/implementation.js"
}
},
"LegacyPrefs": {
"schema": "api/LegacyPrefs/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["LegacyPrefs"]],
"script": "api/LegacyPrefs/implementation.js"
}
}
}
}