YouTube anti-caps

Converts all the video titles to lowercase

  1. /* ==UserStyle==
  2. @name YouTube anti-caps
  3. @description Converts all the video titles to lowercase
  4. @author nullgemm
  5. @version 0.1.1
  6. @namespace https://greasyfork.org/en/users/322108-nullgemm
  7. @license WTFPL
  8. ==/UserStyle== */
  9. @-moz-document domain('youtube.com')
  10. {
  11. .title, #video-title
  12. {
  13. text-transform: lowercase;
  14. }
  15. }