-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmanifest.json
119 lines (119 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{8845E3B3-E8FB-40E2-95E9-EC40294818C4}",
"update_url": "https://raw.githubusercontent.com/jobisoft/quicktext/refs/heads/Main/updates.json",
"strict_min_version": "128.0",
"strict_max_version": "138.*"
}
},
"name": "Quicktext",
"version": "6.3.4",
"author": "John Bieling",
"homepage_url": "https://github.com/jobisoft/quicktext",
"default_locale": "en-US",
"description": "__MSG_extensionDescription__",
"icons": {
"16": "assets/icon16.png",
"24": "assets/icon24.png",
"32": "assets/icon.png"
},
"compose_action": {
"default_title": "Quicktext",
"type": "menu",
"default_label": "",
"default_icon": {
"16": "assets/icon16.png",
"24": "assets/icon24.png",
"32": "assets/icon.png"
}
},
"browser_action": {
"default_title": "Quicktext",
"default_label": "",
"default_icon": {
"16": "assets/icon16.png",
"24": "assets/icon24.png",
"32": "assets/icon.png"
}
},
"permissions": [
"storage",
"menus",
"compose",
"clipboardRead",
"accountsRead",
"addressBooks",
"messagesRead",
"downloads",
"notifications"
],
"background": {
"type": "module",
"scripts": [
"scripts/background.js"
]
},
"experiment_apis": {
"LegacyHelper": {
"schema": "api/LegacyHelper/schema.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[
"LegacyHelper"
]
],
"script": "api/LegacyHelper/implementation.js"
}
},
"NotifyTools": {
"schema": "api/NotifyTools/schema.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[
"NotifyTools"
]
],
"script": "api/NotifyTools/implementation.js",
"events": [
"startup"
]
}
},
"Quicktext": {
"schema": "api/Quicktext/schema.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[
"Quicktext"
]
],
"script": "api/Quicktext/implementation.js"
}
},
"QuicktextToolbar": {
"schema": "api/QuicktextToolbar/schema.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[
"QuicktextToolbar"
]
],
"script": "api/QuicktextToolbar/implementation.js"
}
}
}
}