Greasy Fork is available in English.

Remove rounding

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

// ==UserScript==
// @name         Remove rounding 
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description   Removes rounding of all elements on all sites. | Прибирає срані заокруглення усіх елементів на всіх сайтах
// @author       SergoZar
// @match        *://*/*
// @license GPL v2.0
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement("style");
    style.textContent = ` *{
        border-radius: 0 !important; 
    }`;
    document.head.append(style);
})();