No Twitter Crop

Get rid of Twitter's image crop on single image tweets.

Cos'è No Twitter Crop?

No Twitter Crop è un'estensione di Chrome sviluppata da Jaebirds, e la sua funzione principale è "Get rid of Twitter's image crop on single image tweets.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione No Twitter Crop

Scarica i file di estensione No Twitter Crop 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

                        Twitter has updated its mobile app so that it displays vertical sized images properly, but the desktop version still has an awful crop. This extension simply fixes the site so that vertical sized images will display properly. This only works for single image posts, not photosets.                    

Informazioni di Base sull'Estensione

Nome No Twitter Crop No Twitter Crop
ID amijdfkmcibipgokogloipabagonjmbb
URL Ufficiale https://chromewebstore.google.com/detail/no-twitter-crop/amijdfkmcibipgokogloipabagonjmbb
Descrizione Get rid of Twitter's image crop on single image tweets.
Dimensione del File 6.81 KB
Conteggio Installazioni 111
Versione Corrente 1.02
Ultimo Aggiornamento 2021-08-12
Data di Pubblicazione 2021-08-11
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Jaebirds
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Twitter Crop",
    "description": "Get rid of Twitter's image crop on single image tweets.",
    "version": "1.02",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/notwittercrop16.png",
            "32": "\/images\/notwittercrop32.png",
            "48": "\/images\/notwittercrop48.png",
            "128": "\/images\/notwittercrop128.png"
        }
    },
    "icons": {
        "16": "\/images\/notwittercrop16.png",
        "32": "\/images\/notwittercrop32.png",
        "48": "\/images\/notwittercrop48.png",
        "128": "\/images\/notwittercrop128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "twitter.css"
            ]
        }
    ]
}