Ban Checker for Steam

Automatically check bans of people you recently played with, your friends, and group members.

Ban Checker for Steam란 무엇입니까?

Ban Checker for Steam은(는) Geku에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically check bans of people you recently played with, your friends, and group members."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Ban Checker for Steam 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension to check bans of people you recently played with (or your friends and groups members). It also works on Counter-Strike specific pages.

You can now change default API Key to your own (in case Valve bans default one and you don't want to wait for update). Go to extension's options page to do so.

Github: https://github.com/ge-ku/Ban-Checker-for-Steam

Script works on pages with URIs that follow such patterns:
*://steamcommunity.com/id/*/friends*
*://steamcommunity.com/profiles/*/friends*

Example: http://steamcommunity.com/my/friends/coplay                    

확장 프로그램 기본 정보

이름 Ban Checker for Steam Ban Checker for Steam
ID canbadmphamemnmdfngmcabnjmjgaiki
공식 URL https://chromewebstore.google.com/detail/ban-checker-for-steam/canbadmphamemnmdfngmcabnjmjgaiki
설명 Automatically check bans of people you recently played with, your friends, and group members.
파일 크기 97.26 KB
설치 횟수 80,518
현재 버전 1.4.0
최근 업데이트 2024-02-02
출시 날짜 2019-03-19
평점 4.49/5 총 293 개의 평점
개발자 Geku
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ge-ku/Ban-Checker-for-Steam
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ban Checker for Steam",
    "description": "Automatically check bans of people you recently played with, your friends, and group members.",
    "version": "1.4.0",
    "icons": {
        "16": "icons\/ow16.png",
        "48": "icons\/ow48.png",
        "128": "icons\/ow128.png"
    },
    "permissions": [
        "storage",
        "alarms",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/steamcommunity.com\/*",
        "https:\/\/api.steampowered.com\/*"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "options.html",
                "icons\/*.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "checkbans.js",
                "options.js"
            ],
            "css": [
                "display.css"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/friends*",
                "*:\/\/steamcommunity.com\/profiles\/*\/friends*",
                "*:\/\/steamcommunity.com\/id\/*\/following*",
                "*:\/\/steamcommunity.com\/profiles\/*\/following*",
                "*:\/\/steamcommunity.com\/id\/*\/groups*",
                "*:\/\/steamcommunity.com\/profiles\/*\/groups*"
            ]
        },
        {
            "js": [
                "checkbans-old.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/groups\/*\/members*"
            ]
        },
        {
            "js": [
                "replaceurl.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/groups\/*"
            ]
        },
        {
            "js": [
                "options.js",
                "gcpd730.js"
            ],
            "css": [
                "display.css"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistorycompetitive",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorycompetitive",
                "*:\/\/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=matchhistorywingman",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistorywingman",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistoryscrimmage",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistoryscrimmage",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=matchhistoryophydra",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=matchhistoryophydra",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=playerreports",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=playerreports",
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730*tab=playercommends",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730*tab=playercommends"
            ]
        },
        {
            "js": [
                "csrating.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/steamcommunity.com\/id\/*\/gcpd\/730?tab=majors",
                "*:\/\/steamcommunity.com\/profiles\/*\/gcpd\/730?tab=majors"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "manifest_version": 3
}