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://greasyfork.org/en/users/322108-nullgemm
@license       WTFPL
==/UserStyle== */
@-moz-document domain('youtube.com')
{
  .title, #video-title
  {
    text-transform: lowercase;
  }
}