Twitter Login Hider

Browse Twitter without an account!

Twitter Login Hiderคืออะไร?

Twitter Login Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย James Presario และคุณลักษณะหลักของมันคือ "Browse Twitter without an account!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Login Hider

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}