RYM: Show rating shortcut on release page

Show [RatingXXXXXX] shortcut on release page beside cataloging/rating options

  1. // ==UserScript==
  2. // @name RYM: Show rating shortcut on release page
  3. // @description Show [RatingXXXXXX] shortcut on release page beside cataloging/rating options
  4. // @version 0.1
  5. // @match https://rateyourmusic.com/release/*
  6. // @copyright 2013+, thought_house
  7. // @namespace https://greasyfork.org/users/2653
  8. // ==/UserScript==
  9.  
  10. var $ = unsafeWindow.jQuery;
  11.  
  12. var shortcut = $('.my_review .review_publish_status .album_shortcut').val();
  13. if (shortcut != '[Rating0]') {
  14. $('.release_my_catalog div.clear').before('<div><input class="album_shortcut" readonly style="width:100px;margin-top:0;float:none;" onclick="focus();select();" value="' + shortcut + '" /></div>');
  15. }