SteamAutoAuth

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

What is SteamAutoAuth?

SteamAutoAuth is a Chrome extension developed by Trevor Philips Industries, and its main feature is "A chrome web extension to ease logging into multiple steam accounts.".

Extension Screenshots

screenshot

Download SteamAutoAuth Extension CRX File

Download SteamAutoAuth extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SteamAutoAuth SteamAutoAuth
ID dmgojbkbogegcgdfbilopdhlehbikmig
Official URL https://chromewebstore.google.com/detail/steamautoauth/dmgojbkbogegcgdfbilopdhlehbikmig
Description A chrome web extension to ease logging into multiple steam accounts.
File Size 598 KB
Installation Count 28
Current Version 0.2.2
Last Updated 2022-09-15
Publish Date 2021-12-17
Rating 5.00/5 Total 2 Ratings
Developer Trevor Philips Industries
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}