Squarifier

Restores the old look of many websites by making things square

Versione datata 05/02/2024. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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