SteamGuard Authorizator

SteamGuard mobile authenticator authorization codes directly in your browser!

Что такое SteamGuard Authorizator?

SteamGuard Authorizator - это расширение Chrome, разработанное accxak, и его основная функция - "SteamGuard mobile authenticator authorization codes directly in your browser!".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения SteamGuard Authorizator

Скачайте файлы расширений SteamGuard Authorizator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название SteamGuard Authorizator SteamGuard Authorizator
ID cimopngjedikbebkpcnemgokekenboam
Официальный URL https://chromewebstore.google.com/detail/steamguard-authorizator/cimopngjedikbebkpcnemgokekenboam
Описание SteamGuard mobile authenticator authorization codes directly in your browser!
Размер файла 213 KB
Количество установок 639
Текущая Версия 1.5
Последнее Обновление 2022-06-14
Дата публикации 2022-06-14
Рейтинг 3.59/5 Всего 37 оценок
Разработчик accxak
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}