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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
            ]
        }
    ]
}