Steam ID Finder
Display Steam users' IDs. One-click to copy.
什麼是Steam ID Finder?
Steam ID Finder是由https://avi12.com開發的Chrome擴展程式,該擴展的主要功能是“Display Steam users' IDs. One-click to copy.”。
擴展截圖
下載Steam ID Finder擴展crx文件
下載Steam ID Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Features: 1. Visit a Steam profile to see & copy the user's IDs 2. Right-click a profile URL to copy an associated ID 3. Visit the Friends Manager to copy multiple user IDs at once 4. Generate a line for SourceMod admin configuration when copying an ID Source code: https://github.com/avi12/steam-id-finder
擴展基本資訊
名稱 | Steam ID Finder |
ID | iaeodlelphecgkpneeifmgcjgeoobjah |
官方網址 | https://chromewebstore.google.com/detail/steam-id-finder/iaeodlelphecgkpneeifmgcjgeoobjah |
簡介 | Display Steam users' IDs. One-click to copy. |
檔案大小 | 83.48 KB |
安裝次數 | 1,458 |
目前版本 | 1.0.1 |
更新時間 | 2022-12-14 |
上架時間 | 2020-07-04 |
評分 | 4.67/5 共 6 次評分 |
開發者 | https://avi12.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://avi12.com/steam-id-finder |
說明頁面URL | https://github.com/avi12/steam-id-finder/issues/new/choose |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam ID Finder", "short_name": "Steam ID", "description": "Display Steam users' IDs. One-click to copy.", "version": "1.0.1", "manifest_version": 3, "author": "avi12", "developer": { "name": "avi12", "url": "https:\/\/avi12.com\/skillshare-player-control" }, "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" }, "action": { "default_title": "Steam ID Finder Settings", "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "38": "images\/icon-38.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/steamcommunity.com\/id\/*", "https:\/\/steamcommunity.com\/profiles\/*" ], "js": [ "build\/scripts\/steam-id-finder-content-script-initialize.js" ], "css": [ "build\/styles-injected\/main.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "contextMenus", "storage" ], "host_permissions": [ "https:\/\/api.steampowered.com\/ISteamUser\/*" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |