Gog no rep

Remove reputation

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name        Gog no rep
// @description Remove reputation
// @include     http://www.gog.com/*
// @version     1
// @grant       none
// @author      Rudokhvist
// @license     Apache-2.0
// @namespace https://greasyfork.org/users/2205
// ==/UserScript==
var nostars=true;//change to false if you like to leave stars
var novotes=true;//change to false if you want to vote and see "high" and "low" rated posts
+function(){
var xywka = document.getElementsByClassName('xywka');
for (var i=xywka.length-1; i>=0; i--) {
    xywka[i].parentNode.removeChild(xywka[i]); 
  }
if (nostars) { 
var stars = document.getElementsByClassName('t_u_stars_p');
for (var i=stars.length-1; i>=0; i--) {
    stars[i].parentNode.removeChild(stars[i]); 
  }    
 }   
if (novotes) {
var votes = document.getElementsByClassName('rate_this_post_h_EN');
for (var i=votes.length-1; i>=0; i--) {
    votes[i].parentNode.removeChild(votes[i]); 
  }    
var rategreen = document.getElementsByClassName('post_rate_green');
for (var i=rategreen.length-1; i>=0; i--) {
    rategreen[i].parentNode.removeChild(rategreen[i]); 
  }    
var ratered = document.getElementsByClassName('post_rate_red');
for (var i=ratered.length-1; i>=0; i--) {
    ratered[i].parentNode.removeChild(ratered[i]); 
  }   
var replay = document.getElementsByClassName('replay_h_EN');
for (var i=replay.length-1; i>=0; i--) {
    replay[i].style.right="1px"; 
  }        
 }    
}();