steamID Display
Display of steam users IDs.
O que é steamID Display?
steamID Display é uma extensão do Chrome desenvolvida por nidushan, e sua principal característica é "Display of steam users IDs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão steamID Display
Baixe arquivos de extensão steamID Display no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | steamID Display |
ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
URL Oficial | https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj |
Descrição | Display of steam users IDs. |
Tamanho do Arquivo | 35.98 KB |
Contagem de Instalações | 77 |
Versão Atual | 2.0 |
Última Atualização | 2024-02-02 |
Data de Publicação | 2020-07-17 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | nidushan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://test.nidushan.com/JanMain/privacy/ |
URL da Página de Ajuda | https://test.nidushan.com/JanMain/privacy/ |
URL da Página de Política de Privacidade | https://test.nidushan.com/Folio/privacy.html |
Idiomas Suportados | 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]" } } } |