SteamAutoAuth

A chrome web extension to ease logging into multiple steam accounts.

Что такое SteamAutoAuth?

SteamAutoAuth - это расширение Chrome, разработанное Trevor Philips Industries, и его основная функция - "A chrome web extension to ease logging into multiple steam accounts.".

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

screenshot

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

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

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

                        Automatically inputs password and enters mobile code on steam login. Powered by steam-totp.

As someone who has to constantly keep switching between many accounts in steam, it can take a lot of time. This extension is made with the hope that it can reduce that time significantly.                    

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

Название SteamAutoAuth SteamAutoAuth
ID dmgojbkbogegcgdfbilopdhlehbikmig
Официальный URL https://chromewebstore.google.com/detail/steamautoauth/dmgojbkbogegcgdfbilopdhlehbikmig
Описание A chrome web extension to ease logging into multiple steam accounts.
Размер файла 598 KB
Количество установок 28
Текущая Версия 0.2.2
Последнее Обновление 2022-09-15
Дата публикации 2021-12-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Trevor Philips Industries
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SteamAutoAuth",
    "version": "0.2.2",
    "description": "A chrome web extension to ease logging into multiple steam accounts.",
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "64": "img\/icon_64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/login\/*",
                "https:\/\/store.steampowered.com\/login\/*",
                "https:\/\/steamcommunity.com\/openid\/login*"
            ],
            "js": [
                "dist\/bundle.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "short_name": "SAA",
    "action": {
        "default_title": "Set usernames and secrets.",
        "default_popup": "src\/popup\/popup.html"
    }
}