SteamAutoAuth

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

Vad är SteamAutoAuth?

SteamAutoAuth är en Chrome-tillägg utvecklad av Trevor Philips Industries, och dess huvudfunktion är "A chrome web extension to ease logging into multiple steam accounts.".

Tilläggsskärmbilder

screenshot

Ladda ner SteamAutoAuth-förlängningens CRX-fil

Ladda ner SteamAutoAuth-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn SteamAutoAuth SteamAutoAuth
ID dmgojbkbogegcgdfbilopdhlehbikmig
Officiell webbadress https://chromewebstore.google.com/detail/steamautoauth/dmgojbkbogegcgdfbilopdhlehbikmig
Beskrivning A chrome web extension to ease logging into multiple steam accounts.
Filstorlek 598 KB
Antal Installationer 28
Aktuell Version 0.2.2
Senast Uppdaterad 2022-09-15
Publiceringsdatum 2021-12-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Trevor Philips Industries
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}