Breakthrough Twitter Login Wall

Bypass 'Log in to continue' of Twitter, added in August 2021

Breakthrough Twitter Login Wallคืออะไร?

Breakthrough Twitter Login Wall เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MaySoMusician และคุณลักษณะหลักของมันคือ "Bypass 'Log in to continue' of Twitter, added in August 2021"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Breakthrough Twitter Login Wall ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you felt annoying when "Log in to continue" dialog came out in exploring Twitter? Since August 2021, the Twitter web app has forced us to sign in to continue browsing. With this extension, however, you can bypass that annoying popup and keep "not signed in" twitter-surfing.

Update(v2.0.0 - 2022-07-26): The extension can now erase a login wall with no blinking popup thanks to MutationObserver, and can also work on mobile.twitter.com. The donation message will keep hidden longer once it gets dismissed.

Update(v1.0.2 - 2022-02-13): The extension will no longer hide a full screen view of a profile icon. And it shows the correct link to the add-on page.

Update(v1.0.1 - 2022-02-07): The extension will be show a tiny notification at the left-bottom corner when it hides a login wall, and when it is updated itself. It will save in local storage when our notification is clicked last time, but will never expose the data to anyone but you.

Update(v0.1.4 - 2021-08-20): The extension will be trying to remove the popup only when it is actually shown, according to Twitter's specification changes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Breakthrough Twitter Login Wall Breakthrough Twitter Login Wall
ID ohhifopcgokjpbnppnmjbdnjnfcfnlep
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/breakthrough-twitter-logi/ohhifopcgokjpbnppnmjbdnjnfcfnlep
คำอธิบาย Bypass 'Log in to continue' of Twitter, added in August 2021
ขนาดไฟล์ 49.47 KB
จำนวนการติดตั้ง 36,228
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2022-07-27
วันที่เผยแพร่ 2021-08-18
คะแนน 4.52/5 รวมทั้งหมด 92 คะแนน
ผู้พัฒนา MaySoMusician
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MaySoMusician/breakthrough-twitter-login-wall
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "BTLW",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "__MSG_extDescription__",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Breakthrough Twitter Login Wall",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "bulma\/bulma-css.js",
                "utils.js",
                "msgBox.js",
                "interval.js",
                "remover.js",
                "script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mobile.twitter.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "bulma\/bulma-css.js",
                "utils.js",
                "msgBox.js",
                "interval.js",
                "remover.js",
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "incognito": "split",
    "default_locale": "en"
}