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文件

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