steamID Display

Display of steam users IDs.

steamID Displayคืออะไร?

steamID Display เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nidushan และคุณลักษณะหลักของมันคือ "Display of steam users IDs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย steamID Display

ดาวน์โหลดไฟล์ส่วนขยาย steamID Display ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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]"
        }
    }
}