Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name MusicBrainz: Remove ratings
- // @description
- // @version 2015-03-10
- // @author -
- // @namespace df069240-fe79-11dc-95ff-0800200c9a66
- //
- // @include http://*musicbrainz.org/*
- // ==/UserScript==
- //**************************************************************************//
- function injected() {
- $("th.rating").hide();
- $("span.inline-rating").parent().hide();
- $("h2.rating").hide();
- }
- var script = document.createElement('script');
- script.appendChild(document.createTextNode('('+ injected +')();'));
- document.body.appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment