Requested by @Slendermang
https://forum.facepunch.com/general/btsxx/User-blocking-Browser-addon/1/#postcwbkwy
I'll get the downloads in a few minutes.
Heres the source code for now.
manifest.json:
{
"manifest_version": 2,
"name": "Facepunch ratings hider. Made by ASIC.",
"version": "0.1",
"content_scripts": [
{
"matches": ["*://forum.facepunch.com/*"],
"js": ["content.js"]
}
]
}
content.js:
var pos= document.getElementsByClassName("votes");
for (index = 0, len = pos.length; index < len; ++index) {
pos[index].innerHTML="";
}
var squid= document.getElementsByClassName("votebuttons");
for (index = 0, len = squid.length; index < len; ++index) {
squid[index].innerHTML=" ";
}
Sorry, you need to Log In to post a reply to this thread.