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
Eメール [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"
        }
    ]
}