Extension allows you enjoy listening to YandexMusic right in your favorite code editor. All operation systems are supported ๐๐๐.
To use this extension you should have Yandex Music account.
This extension contributes the following settings:
yandexMusic.rewindTime
- Rewind time (optional, by default is 15s)yandexMusic.showElectronApp
- shows electron app, which is used for playing audio (for debug purpose, by default is false
){
"yandexMusic.rewindTime": 15,
"yandexMusic.showElectronApp": false,
}
When working on a remote machine via SSH, the extension attempts to download and run Electron on the remote machine by default. This is not the correct behavior. We need to instruct Visual Studio Code that the extension should run locally. This can be achieved by using the remote.extensionKind setting as explained in the VS Code documentation.
{
"remote.extensionKind": {
"acherkashin.yandex-music-extension": [ "ui" ]
},
}
Shift + Alt + P
- Play/pause trackShift + Alt + N
- Play next trackShift + Alt + B
- Play previous trackShift + Alt + Y
, Shift + Alt + M
- Open Yandex Music extension barYou can open an issue on a GitHub page or contact me at cherkalexander@gmail.com with any additional questions or feedback.
nodejs
and npm
.yarn
as it is used as package manager for this project.yarn install
in your terminal;F5
.Thanks to MarshalX, his project was used as a foundation for yandex-music-extension and yandex-music-open-api.