generated from Wox-launcher/Wox.Plugin.Template.Nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
72 lines (72 loc) · 1.42 KB
/
plugin.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
64
65
66
67
68
69
70
71
72
{
"Id": "aeb94d3d-9c39-4917-9cd0-a4cde95433a2",
"TriggerKeywords": [
"spotify"
],
"Name": "Spotify",
"Description": "Spotify integration",
"Author": "Wox-launcher",
"Version": "0.0.1",
"MinWoxVersion": "2.0.0",
"Runtime": "nodejs",
"Website": "https://github.com/Wox-launcher/Wox.Plugin.Spotify",
"Entry": "index.js",
"Icon": "relative:images/app.png",
"SupportedOS": [
"windows",
"linux",
"darwin"
],
"Commands": [
{
"Command": "auth",
"Description": "Authenticate with Spotify"
},
{
"Command": "devices",
"Description": "List available devices"
},
{
"Command": "next",
"Description": "Skip to the next track"
},
{
"Command": "prev",
"Description": "Skip to the previous track"
},
{
"Command": "toggle",
"Description": "Toggle play/resume on current track"
},
{
"Command": "queue",
"Description": "Current user queue"
},
{
"Command": "recent",
"Description": "Recently played tracks"
},
{
"Command": "search",
"Description": "Search for a track/album/artist"
},
{
"Command": "me",
"Description": "Current user profile"
}
],
"Features": [
{
"Name": "deepLink"
},
{
"Name": "ignoreAutoScore"
},
{
"Name": "debounce",
"Params": {
"intervalMs": "200"
}
}
]
}