Greasy Fork is available in English.
-
当前为 
// ==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
// ==/UserScript==
(function() {
  'use strict';
  var style = '<style> .track_list .title span.track-title { text-transform: capitalize; } </style>';
  document.head.insertAdjacentHTML('beforeEnd', style);
  document.querySelectorAll('span.track-title').forEach((t) => {
    t.textContent = t.textContent.toLowerCase();
  })
})();