You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CustomApps/lyrics-plus/index.js
+14-8
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,14 @@ const CONFIG = {
58
58
delay: 0,
59
59
},
60
60
providers: {
61
+
lrclib: {
62
+
on: getConfig("lyrics-plus:provider:lrclib:on"),
63
+
desc: "Lyrics sourced from lrclib.net. Supports both synced and unsynced lyrics. LRCLIB is a free and open-source lyrics provider.",
64
+
modes: [SYNCED,UNSYNCED],
65
+
},
61
66
musixmatch: {
62
67
on: getConfig("lyrics-plus:provider:musixmatch:on"),
63
-
desc: "Fully compatible with Spotify. Requires a token that can be retrieved from the official Musixmatch app. If you have problems with retrieving lyrics, try refreshing the token by clicking <code>Refresh Token</code> button.",
68
+
desc: "Fully compatible with Spotify. Requires a token that can be retrieved from the official Musixmatch app. If you have problems with retrieving lyrics, try refreshing the token by clicking <code>Refresh Token</code> button. You may need to be forced to use your own CORS Proxy to use this provider.",
on: getConfig("lyrics-plus:provider:netease:on",false),
74
79
desc: "Crowdsourced lyrics provider ran by Chinese developers and users.",
75
80
modes: [KARAOKE,SYNCED,UNSYNCED],
76
81
},
77
-
lrclib: {
78
-
on: getConfig("lyrics-plus:provider:lrclib:on"),
79
-
desc: "Lyrics sourced from lrclib.net. Supports both synced and unsynced lyrics. LRCLIB is a free and open-source lyrics provider.",
80
-
modes: [SYNCED,UNSYNCED],
81
-
},
82
82
genius: {
83
83
on: spotifyVersion>="1.2.31" ? false : getConfig("lyrics-plus:provider:genius:on"),
84
84
desc: "Provide unsynced lyrics with insights from artists themselves. Genius is disabled and cannot be used as a provider on <code>1.2.31</code> and higher.",
@@ -175,9 +175,10 @@ class LyricsContainer extends react.Component {
0 commit comments