Squarifier

Restores the old look of many websites by making things square

اعتبارا من 05-02-2024. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Squarifier
// @namespace    http://tampermonkey.net/
// @version      0.0
// @description  Restores the old look of many websites by making things square
// @author       Vacuum_Tube_Gaming
// @match        *://*/*
// @icon         https://pixfeeds.com/images/science/physics/1280-146879596-vacuum-tube.jpg
// @grant        none
// @license MIT
// ==/UserScript==
//most efficient code ever:
var i = 1;
function myLoop() {
    setTimeout(function() {


        var all = document.getElementsByTagName("*");

        for (var st=0, max=all.length; st < max; st++) {
            all[st].style.borderRadius = '0px';
        }
        console.log("changed")

        i++;
        if (0 < 1) {
        myLoop();
        }
    }, 1000)
}

myLoop();