BC: Title Case tracks

change ALL CAPS TRACKS to Title Case

// ==UserScript==
// @name        BC: Title Case tracks
// @namespace   userscript1
// @match       https://*.bandcamp.com/*
// @match       https://*.bandcamp.com/
// @grant       none
// @version     0.1.3
// @description change ALL CAPS TRACKS to Title Case
// @license     GPLv3
// ==/UserScript==

(function() {
  'use strict';

  document.querySelectorAll('span.track-title').forEach((t) => {
    if (t.textContent == t.textContent.toUpperCase() ) {
      t.textContent = t.textContent.toLowerCase();
      t.style.textTransform = 'capitalize';
    }
  });

})();