Keep your music free of AI slop.
Install the browser extension for Yandex Music for free.
- Operating system: Linux, macOS, or Windows
- Node.js 24.x
- pnpm 9.x
Go to the extension directory and install dependencies:
cd extension
pnpm iTo run the add-on locally in development mode:
# Google Chrome
pnpm dev
# Firefox
pnpm dev:firefoxTo build the add-on from source:
# Google Chrome
pnpm build
# Firefox
pnpm build:firefoxOr run zip scripts to get a ready-to-upload archive:
# Google Chrome
pnpm zip
# Firefox
pnpm zip:firefox-
Update
versioninextension/package.json. -
Create
data/v<version>.json.gzwith the new format and updateSOURCE_URLinAiArtistsService.tsif the JSON data format changed.The filename should match the extension version when the format was introduced (e.g.
v0.2.0.json.gz). Overwrite the same file if only the data refreshes. -
From the repository root, tag and push:
git tag -a v* -m "Slopless v*" git push origin v*
The
release.yamlworkflow runs necessary scripts automatically when av*tag is published.