Discussion Profile themes

>>rude

brapzillianpixel.gif
 
I'd like to have this added, but to have it as a toggle-able setting, so that people who don't like music won't have to hear it.
 
anyways
Open your browser's dev console window View attachment 21802 (I'm on Librewolf/Firefox, so it's Ctrl + Shift + I) and copy and paste this and it'll play a little hearty tune
[wholesome]

JavaScript:
const myaudio = document.createElement("audio"); myaudio.autoplay = true; myaudio.loop = true; const myaudiosource = document.createElement("source"); myaudiosource.src = "https://fi.zophar.net/soundfiles/sega-mega-drive-genesis/sonic-cd-jp-scd/01%20-%20Palmtree%20Panic%20Zone%20Past.mp3"; myaudiosource.type = "audio/mpeg"; myaudio.appendChild(myaudiosource); myaudio.volume = 0.5
I tried this and it worked, good song
 
Back
Top