-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 1021 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 1021 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"manifest_version": 3,
"version": "1.1",
"author": "fx@fx-world.de",
"name": "Audio Preview",
"description": "Adds a preview for audio files (wav, mp3, ..)",
"browser_specific_settings": {
"gecko": {
"id": "audiopreview@fx-world.de",
"strict_min_version": "128.0",
"strict_max_version" : "140.*"
}
},
"permissions": [
"messagesRead",
"scripting"
],
"background": {
"scripts": [
"src/background.js"
]
},
"icons": {
"64": "images/audio.png",
"32": "images/audio.png",
"16": "images/audio.png"
},
"experiment_apis": {
"LegacyPrefs": {
"schema": "src/LegacyPrefs/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["LegacyPrefs"]],
"script": "src/LegacyPrefs/implementation.js"
}
}
}
}