TwitterBird

Changes the "X" brand back to Twitter

Was ist TwitterBird?

TwitterBird ist eine Chrome-Erweiterung, die von https://labystudio.de entwickelt wurde, und ihr Hauptmerkmal ist "Changes the "X" brand back to Twitter".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

TwitterBird-Erweiterungs-CRX-Datei herunterladen

Laden Sie TwitterBird-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TwitterBird TwitterBird
ID cglkhpbplnpobkhgecadnemehdaphahh
Offizielle URL https://chromewebstore.google.com/detail/twitterbird/cglkhpbplnpobkhgecadnemehdaphahh
Beschreibung Changes the "X" brand back to Twitter
Dateigröße 1.72 MB
Installationsanzahl 213
Aktuelle Version 1.2
Letztes Update 2023-07-27
Veröffentlichungsdatum 2023-07-25
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://labystudio.de
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}