NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Quora hide view count
// @namespace https://github.com/adityavarma1234/
// @version 0.1
// @description Quora hide upvote count, comments count, followers count.
// @author Aditya Varma
// @match https://www.quora.com/*
// @grant none
// ==/UserScript==
function hideCount(){
var span = document.getElementsByClassName("count");
for(i = 0; i<span.length; i++){
span[i].parentNode.removeChild(span[i]);
}
}
function hideViewsAndCredibility(){
var div_element = document.getElementsByClassName("CredibilityFact");
for(i=0; i < div_element.length; i++){
// div_element[i].parentNode.removeChild(div_element[i]);
// uncomment the above line to remove credibility entirely
div_element[i].innerHTML = div_element[i].innerHTML.replace(/(^\d+)(\.\d+|)(k Views*| Views)/i, "");
}
}
hideCount();
hideCount(); // for some reason the "follow" still shows count so calling it again.
hideViewsAndCredibility();
window.onscroll = function (e){
hideCount();
hideViewsAndCredibility()
}