TwitterBird

Changes the "X" brand back to Twitter

Cos'è TwitterBird?

TwitterBird è un'estensione di Chrome sviluppata da https://labystudio.de, e la sua funzione principale è "Changes the "X" brand back to Twitter".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione TwitterBird

Scarica i file di estensione TwitterBird 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

                        This add-on reverts all logos of the Twitter/X website back to the Twitter bird.

It changes every single X logo, including the icon in the browser tab, the logout screen, and the boot screen. Additionally, it modifies the avatar, banner, name, handle and badge of the official Twitter accounts.

Please be aware that Twitter is currently changing its website every day.
I'm trying to keep the add-on up to date with the latest changes Elon Musk is making to Twitter/X.                    

Informazioni di Base sull'Estensione

Nome TwitterBird TwitterBird
ID cglkhpbplnpobkhgecadnemehdaphahh
URL Ufficiale https://chromewebstore.google.com/detail/twitterbird/cglkhpbplnpobkhgecadnemehdaphahh
Descrizione Changes the "X" brand back to Twitter
Dimensione del File 1.72 MB
Conteggio Installazioni 213
Versione Corrente 1.2
Ultimo Aggiornamento 2023-07-27
Data di Pubblicazione 2023-07-25
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore https://labystudio.de
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TwitterBird",
    "description": "Changes the \"X\" brand back to Twitter",
    "short_name": "TwitterBird",
    "manifest_version": 3,
    "version": "1.2",
    "icons": {
        "16": "assets\/icon\/icon16.png",
        "164": "assets\/icon\/icon164.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ],
            "js": [
                "js\/Injector.js",
                "js\/controllers\/SvgLogoInjector.js",
                "js\/controllers\/FaviconInjector.js",
                "js\/controllers\/TwitterAccountInjector.js",
                "js\/controllers\/TitleInjector.js",
                "js\/TwitterBird.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ]
        }
    ]
}