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
电子邮箱 [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"
    }
}