Removing X from Twitter

Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…

Cos'è Removing X from Twitter?

Removing X from Twitter è un'estensione di Chrome sviluppata da daraemgvd, e la sua funzione principale è "Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Removing X from Twitter

Scarica i file di estensione Removing X from Twitter 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

                        Brings back classic Twitter. Also removes verification buttons.

Devuelve Twitter a su estado clásico, también elimina los botones de verificación.                    

Informazioni di Base sull'Estensione

Nome Removing X from Twitter Removing X from Twitter
ID njckbclijhhggdkjegpeapgdgbabeoab
URL Ufficiale https://chromewebstore.google.com/detail/removing-x-from-twitter/njckbclijhhggdkjegpeapgdgbabeoab
Descrizione Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…
Dimensione del File 23.7 KB
Conteggio Installazioni 88
Versione Corrente 2.4
Ultimo Aggiornamento 2023-12-09
Data di Pubblicazione 2023-08-17
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore daraemgvd
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Removing X from Twitter",
    "version": "2.4",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "resources": [
                "logo.svg",
                "logoBlanco.png"
            ]
        }
    ]
}