Skip to content

Instantly share code, notes, and snippets.

@vincerubinetti
Last active May 10, 2025 16:33
Show Gist options
  • Save vincerubinetti/40b7bcf0dedabc5dc8abe9ee932d522d to your computer and use it in GitHub Desktop.
Save vincerubinetti/40b7bcf0dedabc5dc8abe9ee932d522d to your computer and use it in GitHub Desktop.
Run in dev console on Bandcamp album edit page to set the price of all tracks at the same time
$$(".price").forEach((el) => {
el.value = 0;
el.dispatchEvent(new InputEvent("input"));
el.dispatchEvent(new InputEvent("change"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment