-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (23 loc) · 875 Bytes
/
manifest.json
File metadata and controls
26 lines (23 loc) · 875 Bytes
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
{
"manifest_version": 2,
"name": "TinyWebEx MessageHandler library dev example",
"short_name": "TinyWebEx MessageHandler",
"version": "1.0",
"author": "rugk",
"description": "A handler for showing customizable, hidable notification messages in your add-on.",
"homepage_url": "https://github.com/TinyWebEx/MessageHandler",
// only for the unit test, we need to load libraries from CDNs
"content_security_policy": "default-src 'none'; style-src 'self' https://unpkg.com; script-src 'self' https://unpkg.com",
"permissions": [
// required, because of dependency on Logger and this depends on AddonSettings
"storage"
],
"applications": {
"gecko": {
//ID required, because of storage permission
"id": "exampleId@rugk.github.io",
// minimum version, because of module system
"strict_min_version": "60.0a1"
}
}
}