YouTube Squarer

Makes YouTube less round. Slight adjustments to UI.

Cos'è YouTube Squarer?

YouTube Squarer è un'estensione di Chrome sviluppata da Brandon Flynn, e la sua funzione principale è "Makes YouTube less round. Slight adjustments to UI.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Squarer

Scarica i file di estensione YouTube Squarer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Makes YouTube less round by setting the "border-radius" to 0 on many elements.                    

Informazioni di Base sull'Estensione

Nome YouTube Squarer YouTube Squarer
ID nbagifdoojjnhlhamdgaejmikcfffldm
URL Ufficiale https://chromewebstore.google.com/detail/youtube-squarer/nbagifdoojjnhlhamdgaejmikcfffldm
Descrizione Makes YouTube less round. Slight adjustments to UI.
Dimensione del File 1009 KB
Conteggio Installazioni 135
Versione Corrente 0.2
Ultimo Aggiornamento 2022-11-03
Data di Pubblicazione 2022-10-28
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Brandon Flynn
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Squarer",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Makes YouTube less round. Slight adjustments to UI.",
    "permissions": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_end"
        }
    ]
}