-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
executable file
·36 lines (36 loc) · 924 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
{
"manifest_version": 2,
"name": "Add to Sonos Queue",
"version": "0.1.1",
"description": "Add tracks from SoundCloud to your Sonos queue",
"homepage_url": "https://github.com/robbi5/add-to-sonos-queue",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"page_action": {
"default_icon": "icons/icon48.png",
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_title": "Add to Sonos Queue",
"default_popup": "page_action/page_action.html"
},
"options_page": "settings/settings.html",
"permissions": [
"declarativeContent",
"activeTab",
"storage",
"https://api.soundcloud.com/*",
"https://*/MediaRenderer/AVTransport/Control",
"https://*/xml/device_description.xml"
]
}