YouTube anti-caps

Converts all the video titles to lowercase

目前为 2020-04-10 提交的版本。查看 最新版本

/* ==UserStyle==
@name          YouTube anti-caps
@description   Converts all the video titles to lowercase
@author        cylgom
@version       0.1
@icon          https://youtube.com/favicon.ico
@namespace     https://greasyfork.org/en/users/322108-cylgom
@license       WTFPL
==/UserStyle== */
@-moz-document domain('youtube.com')
{
  .title, #video-title
  {
    text-transform: lowercase;
  }
}