Steam Card Assistant

Extends the Steam Badge crafting system by crafting multiple badges at once, as well as other useful features.

Steam Card Assistant란 무엇입니까?

Steam Card Assistant은(는) https://tcno.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the Steam Badge crafting system by crafting multiple badges at once, as well as other useful features."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Steam Card Assistant 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A simple Open-source extension for Steam Badge crafting and managing. Speed up leveling.
Features:
- Craft multiple badges at once, with once click (No more click and reload 5 times)
- Craft multiple badges from the badge list. You don't need to go into the seperate pages.
- Purchase badge sets in groups of 5, making mass crafting even easier.
- Always makes sure steamcommunity is HTTPS. Sometimes you'll be insecurely connected, as Steam does not force it.

This project is open source under the MIT License. Check out the GitHub repository: https://github.com/TcNobo/TcNo-Steam-Card-Assistant

Official website: https://tcno.co/
Discord: https://discord.gg/Aj6RrKh
Suggestions & Business queries: [email protected] (or via Discord)                    

확장 프로그램 기본 정보

이름 Steam Card Assistant Steam Card Assistant
ID peclgodihffdabhnecgclojooijaeeeb
공식 URL https://chromewebstore.google.com/detail/steam-card-assistant/peclgodihffdabhnecgclojooijaeeeb
설명 Extends the Steam Badge crafting system by crafting multiple badges at once, as well as other useful features.
파일 크기 56.23 KB
설치 횟수 7,121
현재 버전 2.3.1
최근 업데이트 2022-05-29
출시 날짜 2020-07-01
평점 4.00/5 총 8 개의 평점
개발자 https://tcno.co
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tcno.co/
도움말 페이지 URL https://s.tcno.co/Card-Discord
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steam Card Assistant",
    "description": "Extends the Steam Badge crafting system by crafting multiple badges at once, as well as other useful features.",
    "version": "2.3.1",
    "homepage_url": "https:\/\/tcno.co\/",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16x16.png",
            "32": "images\/icon32x32.png",
            "48": "images\/icon48x48.png",
            "128": "images\/icon128x128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16x16.png",
        "32": "images\/icon32x32.png",
        "48": "images\/icon48x48.png",
        "128": "images\/icon128x128.png"
    },
    "web_accessible_resources": [
        "TcNoEmbed.js"
    ],
    "permissions": [
        "*:\/\/*.steampowered.com\/*",
        "*:\/\/*.steamcommunity.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/badges*",
                "*:\/\/*.steamcommunity.com\/market\/multibuy*",
                "*:\/\/*.steamcommunity.com\/id\/*\/gamecards*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "sca.js"
            ]
        }
    ]
}