Kbin Remove Reputation

Remove reputation points from user's profile. Navigate Kbin unbiased.

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         Kbin Remove Reputation
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove reputation points from user's profile. Navigate Kbin unbiased.
// @author       minnieo
// @match        https://kbin.social/*
// @match        https://fedia.io/*
// @match        https://karab.in/*
// @match        https://www.kbin.cafe/*
// @match        https://karab.in/*
// @match        https://readit.buzz/*
// @match        https://forum.fail/*
// @match        https://fedi196.gay/*
// @match        https://feddit.online/*
// @match        https://kbin.run/*
// @match        https://nadajnik.org/*
// @match        https://kbin.cafe/*
// @match        https://kbin.lol/*
// @match        https://nerdbin.social/*
// @match        https://kbin.lgbt/*
// @match        https://kbin.place/*
// @match        https://kopnij.in/*
// @match        https://kbin.sh/*
// @match        https://kayb.ee/*
// @match        https://wiku.hu/*
// @match        https://kbin.chat/*
// @match        https://fediverse.boo/*
// @match        https://tuna.cat/*
// @match        https://kbin.dk/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kbin.social
// @grant        none
// @license      MIT
// ==/UserScript==


// check if reputation removal is enabled
let repEnabled = localStorage.getItem('repEnabled') === 'true';


function reputation() {
  const currentURL = window.location.href;
  

  if (!repEnabled) {
    return;
  }

  const popover = document.getElementById('popover')
  if (popover) {
    popover.addEventListener('openPopover', (e) => {
    const element = e.target;
    const liElement = element.querySelector('li:nth-child(2)');
    if (liElement)  {
      liElement.remove();
   
    }
  });
  if (currentURL.startsWith('https://kbin.social/u/')) {
    document.querySelector('.section.user-info .info li:nth-child(2)').remove();
  } else {
    return;
  }
  
}
 
}



reputation();



// checkbox (toggle on and off)
const headerMenu = document.querySelectorAll('#header.header menu')[1];
const profileDropdown = headerMenu.querySelectorAll('li.dropdown')[2];
const repToggleCont = document.createElement('li');
const repToggle = document.createElement('a');
repToggle.className = repEnabled ? 'fa-solid fa-square-check' : 'fa-solid fa-square';
repToggle.title = repEnabled ? 'Show reputation (reloads page)' : 'Hide reputation';
repToggleCont.appendChild(repToggle)
headerMenu.appendChild(repToggleCont);

repToggle.addEventListener('click', () => {
  repEnabled = !repEnabled;
  localStorage.setItem('repEnabled', repEnabled);

  if (repEnabled) {
    repToggle.classList.replace('fa-square', 'fa-square-check');
    reputation();
  } else {
    repToggle.classList.replace('fa-square-check', 'fa-square');
    location.reload();
  }

  
});