CS2 history ban checker

Check ban status of players you encountered in CS2 matchmaking.

CS2 history ban checker란 무엇입니까?

CS2 history ban checker은(는) BatStak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check ban status of players you encountered in CS2 matchmaking."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CS2 history ban checker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Load your premier, matchmaking, wingman or csgo history and find if players have been banned (VAC or Game ban) after playing with you.
You can check on your friends, followed and blocked players too.

Right click anywhere on any webpage and you will see the menu to access directly to your match history or friends list.

You will see the list of banned players and matches are populated with ban infos.
We keep results in local database to avoid reloading the history every time.

CS2 history ban checker does not send or share any user data to the developer of extension and third-party. Extension communicates with Steam servers directly. All data are stored locally into the browser.                    

확장 프로그램 기본 정보

이름 CS2 history ban checker CS2 history ban checker
ID pniajbbemhplaefaikpgfipmopopjeob
공식 URL https://chromewebstore.google.com/detail/cs2-history-ban-checker/pniajbbemhplaefaikpgfipmopopjeob
설명 Check ban status of players you encountered in CS2 matchmaking.
파일 크기 287 KB
설치 횟수 327
현재 버전 2.0.11
최근 업데이트 2024-02-25
출시 날짜 2023-08-15
평점 3.00/5 총 2 개의 평점
개발자 BatStak
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/BatStak/CS2-and-CSGO-history-ban-checker
도움말 페이지 URL https://github.com/BatStak/CS2-and-CSGO-history-ban-checker
개인정보 보호 정책 페이지 URL https://github.com/BatStak/CS2-history-ban-checker/blob/master/privacy-policy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CS2 history ban checker",
    "description": "Check ban status of players you encountered in CS2 matchmaking.",
    "version": "2.0.11",
    "permissions": [
        "unlimitedStorage",
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/steamcommunity.com\/*",
        "https:\/\/api.steampowered.com\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "index.js",
                "polyfills.js",
                "main.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/friends",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/add",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/add",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/add\/",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/add\/",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/coplay",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/coplay",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/coplay\/",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/coplay\/",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/blocked",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/blocked",
                "*:\/\/steamcommunity.com\/id\/*\/friends\/blocked\/",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends\/blocked\/",
                "*:\/\/steamcommunity.com\/id\/*\/following",
                "*:\/\/steamcommunity.com\/profiles\/*\/following",
                "*:\/\/steamcommunity.com\/id\/*\/following\/",
                "*:\/\/steamcommunity.com\/profiles\/*\/following\/",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistorypremier",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorypremier",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistorycompetitivepermap",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorycompetitivepermap",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistorycompetitive",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorycompetitive",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistorywingman",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorywingman"
            ]
        }
    ],
    "manifest_version": 3
}