Remove twitter login blocker

Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.

ما هو Remove twitter login blocker؟

Remove twitter login blocker هو إضافة Chrome تم تطويرها بواسطة BeniNovakDev، والميزة الرئيسية لها هي "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Remove twitter login blocker

قم بتنزيل ملفات الامتداد Remove twitter login blocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Enables browsing twitter without account or being logged in --- a "feature" that was introduced sometime in the summer of 2021. It does this by hiding the annoying "Log in / Sign up" prompt when it pops up. When it hides the popup it will also hide the blue banner on the bottom of the screen, which is there to also convince you to login, and the "enable cookies" prompt. Made for people who only occasionally use twitter to check on a specific account for updates and the like.

This extension might not work properly if used when logged in.

Icon for the extension provided by SVG Repo - - https://www.svgrepo.com/                    

معلومات أساسية عن التمديد

الاسم Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
عنوان URL الرسمي https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
الوصف Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
حجم الملف 23.39 KB
عدد التثبيتات 2,414
النسخة الحالية 1.0
آخر تحديث 2022-03-30
تاريخ النشر 2022-03-28
تقييم 3.36/5 مجموع تقييمات 11
المطور BeniNovakDev
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove twitter login blocker",
    "version": "1.0",
    "description": "Removes the annoying Twitter log in\/sign up blocker, which prevents the use of Twitter without an account.",
    "icons": {
        "16": "icon-small.png",
        "48": "icon-medium.png",
        "96": "icon-big.png",
        "128": "icon-default.png"
    },
    "author": "Benjamin Luka Novak",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}