Twitter Token Login

Logging into a Twitter account using a token

Что такое Twitter Token Login?

Twitter Token Login - это расширение Chrome, разработанное https://hdd.cm, и его основная функция - "Logging into a Twitter account using a token".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitter Token Login

Скачайте файлы расширений Twitter Token Login в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Logging into  Twitter account using auth_token
With the plugin's pop-up window, simply enter the token, click "Login," and the page will automatically refresh, enabling one-click login.                    

Основная информация о расширении

Название Twitter Token Login Twitter Token Login
ID gidagjoldoibifeocgoioiblgpehmbad
Официальный URL https://chromewebstore.google.com/detail/twitter-token-login/gidagjoldoibifeocgoioiblgpehmbad
Описание Logging into a Twitter account using a token
Размер файла 9.5 KB
Количество установок 3,000
Текущая Версия 1.0
Последнее Обновление 2023-09-29
Дата публикации 2023-09-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://hdd.cm
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://hdd.cm/
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "icons\/logo.png",
        "default_popup": "index.html"
    },
    "description": "Logging into a Twitter account using a token",
    "icons": {
        "128": "icons\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "manifest_version": 3,
    "name": "Twitter Token Login",
    "version": "1.0"
}