Remove rounding

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

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

  1. // ==UserScript==
  2. // @name Remove rounding
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Removes rounding of all elements on all sites. | Прибирає срані заокруглення усіх елементів на всіх сайтах
  6. // @author SergoZar
  7. // @match *://*/*
  8. // @license GPL v2.0
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var style = document.createElement("style");
  14. style.textContent = ` *{
  15. border-radius: 0 !important;
  16. }`;
  17. document.head.append(style);
  18. })();
  19.