>>21979888If you are using 4chan External Sounds as a userscript with Tampermonkey/Violentmonkey, open it using the </> and replace the lines around line 212 from
>try {> link = new URL(link)>} catch (error) {> return>}with
>try {> if (link.includes("files.catbox")) {> link = new URL(link.replace("files.catbox", "de.catbox"))> } else {> link = new URL(link)> }>} catch (error) {> return;>}