CS Accounts Extension

csaccounts.com extension to view CS accounts in steam profile page

CS Accounts Extension란 무엇입니까?

CS Accounts Extension은(는) saddiqs1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "csaccounts.com extension to view CS accounts in steam profile page"입니다.

확장 프로그램 스크린샷

screenshot

CS Accounts Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When viewing a steam profile page, you will be able to see their faceit and esea account embedded on the page.

*NOTE*: ESEA profiles will not work 100% of the time.                    

확장 프로그램 기본 정보

이름 CS Accounts Extension CS Accounts Extension
ID hmkcdlbelaggmkddoebdbenhchpmfcbb
공식 URL https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb
설명 csaccounts.com extension to view CS accounts in steam profile page
파일 크기 23.98 KB
설치 횟수 125
현재 버전 1.1.0
최근 업데이트 2023-05-15
출시 날짜 2023-05-14
평점 5.00/5 총 4 개의 평점
개발자 saddiqs1
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://csaccounts.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CS Accounts Extension",
    "description": "csaccounts.com extension to view CS accounts in steam profile page",
    "version": "1.1.0",
    "action": {
        "default_icon": {
            "16": "icon-16x16.png",
            "32": "icon-32x32.png",
            "48": "icon-32x32.png",
            "128": "icon-32x32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.steamcommunity.com\/id\/*",
                "*:\/\/*.steamcommunity.com\/profiles\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.steamcommunity.com\/id\/*\/allcomments*",
                "*:\/\/*.steamcommunity.com\/profiles\/*\/allcomments*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "https:\/\/csaccounts.com\/api\/*"
    ]
}