SteamAutoAuth
A chrome web extension to ease logging into multiple steam accounts.
Was ist SteamAutoAuth?
SteamAutoAuth ist eine Chrome-Erweiterung, die von Trevor Philips Industries entwickelt wurde, und ihr Hauptmerkmal ist "A chrome web extension to ease logging into multiple steam accounts.".
Erweiterungsscreenshots
SteamAutoAuth-Erweiterungs-CRX-Datei herunterladen
Laden Sie SteamAutoAuth-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | SteamAutoAuth |
ID | dmgojbkbogegcgdfbilopdhlehbikmig |
Offizielle URL | https://chromewebstore.google.com/detail/steamautoauth/dmgojbkbogegcgdfbilopdhlehbikmig |
Beschreibung | A chrome web extension to ease logging into multiple steam accounts. |
Dateigröße | 598 KB |
Installationsanzahl | 28 |
Aktuelle Version | 0.2.2 |
Letztes Update | 2022-09-15 |
Veröffentlichungsdatum | 2021-12-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Trevor Philips Industries |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |