SteamGuard Authorizator

SteamGuard mobile authenticator authorization codes directly in your browser!

Co to jest SteamGuard Authorizator?

SteamGuard Authorizator to rozszerzenie Chrome opracowane przez accxak, a jego główną funkcją jest „SteamGuard mobile authenticator authorization codes directly in your browser!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia SteamGuard Authorizator

Pobierz pliki rozszerzeń SteamGuard Authorizator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Now you do not need to reach for your phone whenever Steam requests authorization code! My extension shows it directly in your browser!

Features:
  - Ability to add multiple accounts
  - Click on the code copies it to the clipboard
  - Insert the code directly on the Steam website

ATTENTION!
For the expansion of the authorization codes required shared_secret, who need to get from your phone. Learn more in Google.                    

Podstawowe informacje o rozszerzeniu

Nazwa SteamGuard Authorizator SteamGuard Authorizator
ID cimopngjedikbebkpcnemgokekenboam
Oficjalny URL https://chromewebstore.google.com/detail/steamguard-authorizator/cimopngjedikbebkpcnemgokekenboam
Opis SteamGuard mobile authenticator authorization codes directly in your browser!
Rozmiar pliku 213 KB
Liczba instalacji 639
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2022-06-14
Data Publikacji 2022-06-14
Ocena 3.59/5 Łącznie 37 Oceny
Deweloper accxak
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.5",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "browser_action": {
        "default_icon": {
            "19": "ba-icon19.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "main.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "js\/buffer.js",
            "js\/crypto.js",
            "js\/bg.js"
        ]
    },
    "web_accessible_resources": [
        "img\/login.png",
        "page.css",
        "js\/page.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/login\/*",
                "https:\/\/steamcommunity.com\/openid\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/page.js"
            ],
            "css": [
                "page.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}