steamID Display
Display of steam users IDs.
Cos'è steamID Display?
steamID Display è un'estensione di Chrome sviluppata da nidushan, e la sua funzione principale è "Display of steam users IDs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione steamID Display
Scarica i file di estensione steamID Display in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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! Informazioni di Base sull'Estensione
| Nome | |
| ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
| URL Ufficiale | https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj |
| Descrizione | Display of steam users IDs. |
| Dimensione del File | 35.98 KB |
| Conteggio Installazioni | 77 |
| Versione Corrente | 2.0 |
| Ultimo Aggiornamento | 2024-02-02 |
| Data di Pubblicazione | 2020-07-17 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | nidushan |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://test.nidushan.com/JanMain/privacy/ |
| URL della Pagina di Aiuto | https://test.nidushan.com/JanMain/privacy/ |
| URL della Pagina della Politica sulla Privacy | https://test.nidushan.com/Folio/privacy.html |
| Lingue Supportate | 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]"
}
}
} | |