ikankering godai
// ==UserScript==
// @name Remove green dot lowyat
// @namespace http://tampermonkey.net/
// @version 0.1
// @description ikankering godai
// @author You
// @match https://forum.lowyat.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
removeElementsByClass('fa fa-circle text-danger Blink');
function removeElementsByClass(className){
var elements = document.getElementsByClassName(className);
while(elements.length > 0){
elements[0].parentNode.removeChild(elements[0]);
}
}
})();