Removes rounding of all elements on all sites. | Прибирає срані заокруглення усіх елементів на всіх сайтах
当前为
// ==UserScript==
// @name Remove rounding
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Removes rounding of all elements on all sites. | Прибирає срані заокруглення усіх елементів на всіх сайтах
// @author SergoZar
// @match *://*/*
// @license GPL v2.0
// ==/UserScript==
(function() {
'use strict';
function f(){
for (var e of document.querySelectorAll("*")) e.style.borderRadius = "0";
}
f();
setTimeout(f, 1000);
setTimeout(f, 2000);
setInterval(f, 4000);
})();