Greasy Fork

Greasy Fork is available in English.

BC: Title Case tracks

-

目前为 2022-12-08 提交的版本,查看 最新版本

// ==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();
  })

})();