RYM Release Pages - track time align left

left aligns total track time in RYM release pages in glorious 60 fps

  1. // ==UserScript==
  2. // @name RYM Release Pages - track time align left
  3. // @namespace tracktime_align_left
  4. // @description left aligns total track time in RYM release pages in glorious 60 fps
  5. // @locale EN
  6. // @include https://rateyourmusic.com/release/*
  7. // @include http://rateyourmusic.com/release/*
  8. // @version 1
  9. // @grant none
  10. // ==/UserScript==
  11. $("span.tracklist_total").css("display","block");
  12. $("span.tracklist_total").css("text-align","left");