Last active
May 10, 2025 16:33
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$$(".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