SteamAutoAuth

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

O que é SteamAutoAuth?

SteamAutoAuth é uma extensão do Chrome desenvolvida por Trevor Philips Industries, e sua principal característica é "A chrome web extension to ease logging into multiple steam accounts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SteamAutoAuth

Baixe arquivos de extensão SteamAutoAuth no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SteamAutoAuth SteamAutoAuth
ID dmgojbkbogegcgdfbilopdhlehbikmig
URL Oficial https://chromewebstore.google.com/detail/steamautoauth/dmgojbkbogegcgdfbilopdhlehbikmig
Descrição A chrome web extension to ease logging into multiple steam accounts.
Tamanho do Arquivo 598 KB
Contagem de Instalações 28
Versão Atual 0.2.2
Última Atualização 2022-09-15
Data de Publicação 2021-12-17
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Trevor Philips Industries
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}