NoDogeTweeter

Revert the Doge logo and restore the original Twitter logo.

Was ist NoDogeTweeter?

NoDogeTweeter ist eine Chrome-Erweiterung, die von Blue Bird Back entwickelt wurde, und ihr Hauptmerkmal ist "Revert the Doge logo and restore the original Twitter logo.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

NoDogeTweeter-Erweiterungs-CRX-Datei herunterladen

Laden Sie NoDogeTweeter-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

                        NoDogeTweeter is a Chrome extension that reverts the 𝕏 logo back to the original Twitter logo and changes the favicon back to its original design. This extension is useful if you prefer the original Twitter aesthetics over the changes made by Elon Musk.

Features

+ Automatically detects the 𝕏 logo on Twitter and replaces it with the original Twitter logo.
+ Reverts the favicon back to its original design.
+ Preserves the original HTML structure.

Instructions for use:

+ Install the NoDogeTweeter extension from the Chrome Web Store.
+ Visit twitter.com or refresh any open Twitter pages (press F5) to see the original Twitter logo in the top left corner.
+ The extension icon will appear blue on Twitter and gray on other websites, showing that it only affects Twitter pages.

Please note: This extension is not affiliated with or endorsed by Twitter, Inc.                    

Grundlegende Informationen zur Erweiterung

Name NoDogeTweeter NoDogeTweeter
ID afahecnmmidcbakdlhiedljihbgeonci
Offizielle URL https://chromewebstore.google.com/detail/nodogetweeter/afahecnmmidcbakdlhiedljihbgeonci
Beschreibung Revert the Doge logo and restore the original Twitter logo.
Dateigröße 1.37 MB
Installationsanzahl 80
Aktuelle Version 1.1.0
Letztes Update 2023-07-25
Veröffentlichungsdatum 2023-04-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Blue Bird Back
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://bluebirdback.com/2023/08/03/bluebirdback-chrome-extension-privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NoDogeTweeter",
    "version": "1.1.0",
    "description": "Revert the Doge logo and restore the original Twitter logo.",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "action": {
        "default_popup": "",
        "default_icon": {
            "16": "assets\/twitter-16.png",
            "24": "assets\/twitter-24.png",
            "32": "assets\/twitter-32.png",
            "48": "assets\/twitter-48.png",
            "64": "assets\/twitter-64.png",
            "128": "assets\/twitter-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/twitter-16.png",
        "24": "assets\/twitter-24.png",
        "32": "assets\/twitter-32.png",
        "48": "assets\/twitter-48.png",
        "64": "assets\/twitter-64.png",
        "128": "assets\/twitter-128.png"
    }
}