steamID Display

Display of steam users IDs.

steamID Display là gì?

steamID Display là một tiện ích mở rộng Chrome được phát triển bởi nidushan, và tính năng chính của nó là "Display of steam users IDs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng steamID Display

Tải xuống các tệp mở rộng steamID Display dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên steamID Display steamID Display
ID ldkfpahjhbighlajfnbehegfpmjpfgmj
URL Chính Thức https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj
Mô tả Display of steam users IDs.
Kích Thước Tệp 35.98 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2024-02-02
Ngày Phát Hành 2020-07-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển nidushan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://test.nidushan.com/JanMain/privacy/
URL Trang Trợ Giúp https://test.nidushan.com/JanMain/privacy/
URL Trang Chính Sách Bảo Mật https://test.nidushan.com/Folio/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}