Removing X from Twitter

Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…

什么是Removing X from Twitter?

Removing X from Twitter是由daraemgvd开发的Chrome扩展程序,该扩展的主要功能是“Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…”。

扩展截图

screenshot
screenshot

下载Removing X from Twitter扩展crx文件

下载Removing X from Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Brings back classic Twitter. Also removes verification buttons.

Devuelve Twitter a su estado clásico, también elimina los botones de verificación.                    

扩展基本信息

名称 Removing X from Twitter Removing X from Twitter
ID njckbclijhhggdkjegpeapgdgbabeoab
官方URL https://chromewebstore.google.com/detail/removing-x-from-twitter/njckbclijhhggdkjegpeapgdgbabeoab
简介 Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…
文件大小 23.7 KB
安装次数 88
当前版本 2.4
更新时间 2023-12-09
上架时间 2023-08-17
评分 5.00/5 共4次评分
开发者 daraemgvd
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Removing X from Twitter",
    "version": "2.4",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "resources": [
                "logo.svg",
                "logoBlanco.png"
            ]
        }
    ]
}