NoDogeTweeter

Revert the Doge logo and restore the original Twitter logo.

NoDogeTweeterとは何ですか?

NoDogeTweeterはBlue Bird Backによって開発されたChromeの拡張機能で、その主な機能は「Revert the Doge logo and restore the original Twitter logo.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

NoDogeTweeter拡張機能のCRXファイルをダウンロード

NoDogeTweeter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 NoDogeTweeter NoDogeTweeter
ID afahecnmmidcbakdlhiedljihbgeonci
公式URL https://chromewebstore.google.com/detail/nodogetweeter/afahecnmmidcbakdlhiedljihbgeonci
説明 Revert the Doge logo and restore the original Twitter logo.
ファイルサイズ 1.37 MB
インストール数 80
現在のバージョン 1.1.0
最終更新日 2023-07-25
公開日 2023-04-08
評価 5.00/5 合計 2 レビュー
開発者 Blue Bird Back
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://bluebirdback.com/2023/08/03/bluebirdback-chrome-extension-privacy-policy
対応言語 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"
    }
}