-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 KB
/
package.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
{
"name": "play-pause",
"title": "Play/Pause",
"description": "Adds a Play/Pause toggle onto tabs that contain an HTML5 audio/video player.",
"author": "Daniel Kamkha",
"license": "MIT",
"version": "1.1.7",
"homepage": "https://github.com/DanielKamkha/PlayPauseFirefox",
"permissions": {
"private-browsing": true,
"cross-domain-content": [
"https://www.youtube.com",
"https://w.soundcloud.com/"
]
},
"locales": {
"fr": {
"title": "Play/Pause",
"description": "Ajoute un bouton Lecture/Pause sur les onglets qui contiennent un lecteur audio/video HTML5."
}
},
"preferences": [
{
"name": "do-embeds",
"title": "Enable Play/Pause for embedded media",
"description": "",
"type": "bool",
"value": false
},
{
"name": "invert-indicator",
"title": "Invert Play/Pause indicator logic",
"description": "",
"type": "bool",
"value": false
},
{
"name": "choose-hotkey",
"title": "Choose hotkey",
"description": "",
"type": "control",
"label": "choose"
},
{
"name": "hotkey-smartPause",
"title": "hotkey-smartPause",
"type": "string",
"value": "",
"hidden": true
},
{
"name": "hotkey-toggleAllTabs",
"title": "hotkey-toggleAllTabs",
"type": "string",
"value": "",
"hidden": true
}
]
}