steamID Display

Display of steam users IDs.

steamID Display란 무엇입니까?

steamID Display은(는) nidushan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display of steam users IDs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

steamID Display 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You will see steamIDs of the corresponding profile you are looking at.
Click on the white highlighted steamID to copy!
You can even copy your friends SteamID by right-clicking and selecting what format you need
The extension was made for admins to find players steamID.

Gratitude to:
xPaw for providing a reliable steamID library
Valve for providing an API

Dedicated for Unloze Community
If you have any suggestions, please don't be shy! Contact me!                    

확장 프로그램 기본 정보

이름 steamID Display steamID Display
ID ldkfpahjhbighlajfnbehegfpmjpfgmj
공식 URL https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj
설명 Display of steam users IDs.
파일 크기 35.98 KB
설치 횟수 77
현재 버전 2.0
최근 업데이트 2024-02-02
출시 날짜 2020-07-17
평점 5.00/5 총 3 개의 평점
개발자 nidushan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://test.nidushan.com/JanMain/privacy/
도움말 페이지 URL https://test.nidushan.com/JanMain/privacy/
개인정보 보호 정책 페이지 URL https://test.nidushan.com/Folio/privacy.html
지원되는 언어 en
manifest.json
{
    "manifest_version": 2,
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "steamID Display",
    "description": "Display of steam users IDs.",
    "version": "2.0",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_title": "Nidushan | Information",
        "default_popup": "popup\/options.html",
        "default_icon": {
            "19": "images\/icon-19.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/id\/*",
                "https:\/\/steamcommunity.com\/profiles\/*"
            ],
            "js": [
                "js\/content-script-steam-initialize.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/api.steampowered.com\/ISteamUser\/*",
        "contextMenus",
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}