Guest User

MusicBrainz: Remove ratings

a guest
Mar 10th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        MusicBrainz: Remove ratings
  3. // @description    
  4. // @version     2015-03-10
  5. // @author      -
  6. // @namespace           df069240-fe79-11dc-95ff-0800200c9a66
  7. //
  8. // @include     http://*musicbrainz.org/*
  9. // ==/UserScript==
  10. //**************************************************************************//
  11.  
  12. function injected() {
  13.  
  14.     $("th.rating").hide();
  15.     $("span.inline-rating").parent().hide();
  16.     $("h2.rating").hide();
  17.  
  18. }
  19. var script = document.createElement('script');
  20. script.appendChild(document.createTextNode('('+ injected +')();'));
  21. document.body.appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment