-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 872 Bytes
/
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
{
"name": "Spopupfy",
"manifest_version": 2,
"description": "A simple mini player popup window for the Spotify web player.",
"version": "0.5.5",
"icons": {
"48": "icon.svg",
"96": "icon.svg",
"128": "icon.svg"
},
"homepage_url": "https://github.com/anghelos/spopupfy",
"developer": {
"name": "Anghelos Coulon",
"url": "https://github.com/anghelos/spopupfy"
},
"content_scripts": [
{
"matches": [
"*://open.spotify.com/*"
],
"js": [
"spopupfy.js"
],
"css": [
"spopupfy.css"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage"
]
}