Skip to content

Instantly share code, notes, and snippets.

@oussamabadr
Created February 8, 2021 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oussamabadr/39bfc2fdb814d9eb1afd60a92b5f1fe4 to your computer and use it in GitHub Desktop.
Save oussamabadr/39bfc2fdb814d9eb1afd60a92b5f1fe4 to your computer and use it in GitHub Desktop.
Hide Stackexchange Reputation
// ==UserScript==
// @name Hide Reputation
// @namespace https://gist.github.com/
// @version 0.1
// @description Hide Stack Exchange user reputation.
// @author oussama.badr
// @match https://stackoverflow.com/*
// @match https://*.stackexchange.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var allRepDivs = document.getElementsByClassName("-flair");
for (var i = 0; i < allRepDivs.length; i++) {
allRepDivs[i].style.display = 'none';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment