steamID Display
Display of steam users IDs.
Qu'est-ce que steamID Display ?
steamID Display est une extension Chrome développée par nidushan, et sa fonction principale est "Display of steam users IDs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension steamID Display
Téléchargez les fichiers d'extension steamID Display au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | steamID Display |
ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
URL Officiel | https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj |
Description | Display of steam users IDs. |
Taille du Fichier | 35.98 KB |
Nombre d'Installations | 77 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2024-02-02 |
Date de Publication | 2020-07-17 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | nidushan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://test.nidushan.com/JanMain/privacy/ |
URL de la Page d'Aide | https://test.nidushan.com/JanMain/privacy/ |
URL de la Page de Politique de Confidentialité | https://test.nidushan.com/Folio/privacy.html |
Langues Prises en Charge | 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]" } } } |