// ==UserScript== // @name BC: Title Case tracks // @namespace userscript1 // @match https://*.bandcamp.com/* // @match https://*.bandcamp.com/ // @grant none // @version 0.1.2 // @description - // @license GPLv3 // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = ''; document.head.insertAdjacentHTML('beforeEnd', style); document.querySelectorAll('span.track-title').forEach((t) => { t.textContent = t.textContent.toLowerCase(); }) })();