steamID Display
Display of steam users IDs.
什麼是steamID Display?
steamID Display是由nidushan開發的Chrome擴展程式,該擴展的主要功能是“Display of steam users IDs.”。
擴展截圖
下載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! 擴展基本資訊
| 名稱 | |
| ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
| 官方網址 | 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]"
}
}
} | |