steamID Display
Display of steam users IDs.
Was ist steamID Display?
steamID Display ist eine Chrome-Erweiterung, die von nidushan entwickelt wurde, und ihr Hauptmerkmal ist "Display of steam users IDs.".
Erweiterungsscreenshots
steamID Display-Erweiterungs-CRX-Datei herunterladen
Laden Sie steamID Display-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | steamID Display |
ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
Offizielle URL | https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj |
Beschreibung | Display of steam users IDs. |
Dateigröße | 35.98 KB |
Installationsanzahl | 77 |
Aktuelle Version | 2.0 |
Letztes Update | 2024-02-02 |
Veröffentlichungsdatum | 2020-07-17 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | nidushan |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://test.nidushan.com/JanMain/privacy/ |
Hilfeseite URL | https://test.nidushan.com/JanMain/privacy/ |
URL der Datenschutzrichtlinien-Seite | https://test.nidushan.com/Folio/privacy.html |
Unterstützte Sprachen | 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]" } } } |