YouTube anti-caps

Converts all the video titles to lowercase

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
/* ==UserStyle==
@name          YouTube anti-caps
@description   Converts all the video titles to lowercase
@author        nullgemm
@version       0.1.1
@namespace     https://greatest.deepsurf.us/en/users/322108-nullgemm
@license       WTFPL
==/UserStyle== */
@-moz-document domain('youtube.com')
{
  .title, #video-title
  {
    text-transform: lowercase;
  }
}