Удаляет все элементы с классом uniqUsernameIcon на lolz.live
目前為
// ==UserScript==
// @name Lolz.live - Remove uniqUsernameIcon
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Удаляет все элементы с классом uniqUsernameIcon на lolz.live
// @author eretly
// @match https://lolz.live/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeUniqIcons() {
document.querySelectorAll('.uniqUsernameIcon').forEach(el => el.remove());
}
removeUniqIcons();
const observer = new MutationObserver(function(mutations) {
removeUniqIcons();
});
observer.observe(document.body, {
childList: true,
subtree: true
});
})();