-
Notifications
You must be signed in to change notification settings - Fork 53
/
manifest.json
73 lines (73 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{8845E3B3-E8FB-40E2-95E9-EC40294818C4}",
"strict_min_version": "115.0",
"strict_max_version": "128.*"
}
},
"name": "Quicktext",
"version": "5.16",
"author": "John Bieling",
"homepage_url": "https://github.com/jobisoft/quicktext",
"default_locale": "en-US",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "chrome/skin/icon16.png",
"24": "chrome/skin/icon24.png",
"32": "chrome/skin/icon.png"
},
"compose_action": {
"default_title": "Quicktext",
"default_label": "",
"default_icon": {
"16": "chrome/skin/icon16.png",
"24": "chrome/skin/icon24.png",
"32": "chrome/skin/icon.png"
}
},
"browser_action": {
"default_title": "Quicktext",
"default_label": "",
"default_icon": {
"16": "chrome/skin/icon16.png",
"24": "chrome/skin/icon24.png",
"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"
}
},
"NotifyTools": {
"schema": "api/NotifyTools/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["NotifyTools"]],
"script": "api/NotifyTools/implementation.js",
"events": ["startup"]
}
},
"LegacyPrefs": {
"schema": "api/LegacyPrefs/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["LegacyPrefs"]],
"script": "api/LegacyPrefs/implementation.js"
}
}
}
}