Twitter Login Hider

Browse Twitter without an account!

什么是Twitter Login Hider?

Twitter Login Hider是由James Presario开发的Chrome扩展程序,该扩展的主要功能是“Browse Twitter without an account!”。

扩展截图

screenshot

下载Twitter Login Hider扩展crx文件

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

扩展使用说明

                        Trying to view Twitter but don't have an account? Normally after a few scrolls, you'll be prompted to create one to continue browsing. With this extension, that login prompt is removed, allowing you to view Twitter without an account!                    

扩展基本信息

名称 Twitter Login Hider Twitter Login Hider
ID eonjdimglkmekijpodngceidnbdajcba
官方URL https://chromewebstore.google.com/detail/twitter-login-hider/eonjdimglkmekijpodngceidnbdajcba
简介 Browse Twitter without an account!
文件大小 107 KB
安装次数 102
当前版本 1.00
更新时间 2022-09-17
上架时间 2022-09-13
评分 5.00/5 共1次评分
开发者 James Presario
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Login Hider",
    "description": "Browse Twitter without an account!",
    "version": "1.00",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icons\/icon16.png",
            "32": "\/images\/icons\/icon32.png",
            "48": "\/images\/icons\/icon48.png",
            "128": "\/images\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icons\/icon16.png",
        "32": "\/images\/icons\/icon32.png",
        "48": "\/images\/icons\/icon48.png",
        "128": "\/images\/icons\/icon128.png"
    },
    "options_page": "onboarding.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "nologin.js"
            ],
            "run_at": "document_idle"
        }
    ]
}