-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
63 lines (63 loc) · 1.22 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
{
"manifest_version": 2,
"name": "StoPlay",
"short_name": "StoPlay",
"homepage_url": "http://stoplay.github.io/",
"version": "1.1.75",
"author": [
{
"name": "Alex Karpov",
"email": "[email protected]"
},
{
"name": "Alex Buznik",
"email": "[email protected]"
},
{
"name": "Sergey Lysenko",
"email": "[email protected]"
},
{
"name": "Lorans Chirko",
"email": "[email protected]"
}
],
"description": "A free Google Chrome extension to stop/play music playing in your web-browser via popular streaming services.",
"icons": {
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"dist/content.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"dist/background.js"
]
},
"permissions": [
"tabs",
"storage"
],
"browser_action": {
"default_title": "StoPlay",
"default_icon": "img/icon128.png"
},
"commands": {
"toggle-feature": {
"description": "Stop/Play shortcut",
"global": true
}
},
"options_ui": {
"page": "dist/options/index.html",
"chrome_style": true
}
}