SteamAutoAuth

SteamAutoAuth

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

Merlin
Additional files are visible only to premium users

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": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.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"
  }
}