// ==UserScript== // @name Trakt Hide ratings // @namespace https://greasyfork.org/en/scripts/372929-hide-ratings // @version 0.3.1 // @description Trakt.tv Hide ratings. // @author Nigel // @match https://trakt.tv/* // @grant none // @downloadURL none // ==/UserScript== /* jshint -W097 */ 'use strict'; $('.percentage').hide() window.onload = function() { if(!window.location.hash) { window.location = window.location + '#loaded'; window.location.reload(); } }