Remove rounding

Removes rounding of all elements on all sites. | Прибирає срані заокруглення усіх елементів на всіх сайтах

目前为 2023-11-14 提交的版本,查看 最新版本

// ==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);
})();