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
/* Open your (or any other) Bandcamp profile, press the "show all x items" button and scroll to the very bottom of the | |
* page, with this you populate the collection item cache which we then can use to mess around with data | |
*/ | |
let tracks = 0; | |
(Object.values(ItemCache.collection)).forEach((tra) => { | |
tracks += parseInt(tra.num_streamable_tracks) | |
}); | |
console.log(`Your collection contains ${tracks} streamable tracks (this means the actual track count might be slightly higher)`); |
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
@-moz-document domain("party.evoke.eu") { | |
html, body { | |
background-color: var(--pico-background-color); | |
color: var(--pico-color); | |
} | |
#add-entry form .section, #edit-entry form .section { | |
background-color: var(--pico-mark-background-color); | |
} |
OlderNewer