Remove rounding

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

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

  1. // ==UserScript==
  2. // @name Remove rounding
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  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. function f(){
  14. for (var e of document.querySelectorAll("*")) e.style.borderRadius = "0";
  15. }
  16. f();
  17. setTimeout(f, 1000);
  18. setTimeout(f, 2000);
  19. setInterval(f, 4000);
  20. })();
  21.