Steam ID Finder
Display Steam users' IDs. One-click to copy.
Steam ID Finder là gì?
Steam ID Finder là một tiện ích mở rộng Chrome được phát triển bởi https://avi12.com, và tính năng chính của nó là "Display Steam users' IDs. One-click to copy.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Steam ID Finder
Tải xuống các tệp mở rộng Steam ID Finder 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Steam ID Finder |
ID | iaeodlelphecgkpneeifmgcjgeoobjah |
URL Chính Thức | https://chromewebstore.google.com/detail/steam-id-finder/iaeodlelphecgkpneeifmgcjgeoobjah |
Mô tả | Display Steam users' IDs. One-click to copy. |
Kích Thước Tệp | 83.48 KB |
Số Lần Cài Đặt | 1,458 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2022-12-14 |
Ngày Phát Hành | 2020-07-04 |
Đánh Giá | 4.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | https://avi12.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://avi12.com/steam-id-finder |
URL Trang Trợ Giúp | https://github.com/avi12/steam-id-finder/issues/new/choose |
Ngôn Ngữ Được Hỗ Trợ | 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]" } } } |