steamID Display

Display of steam users IDs.

Vad är steamID Display?

steamID Display är en Chrome-tillägg utvecklad av nidushan, och dess huvudfunktion är "Display of steam users IDs.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner steamID Display-förlängningens CRX-fil

Ladda ner steamID Display-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn steamID Display steamID Display
ID ldkfpahjhbighlajfnbehegfpmjpfgmj
Officiell webbadress https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj
Beskrivning Display of steam users IDs.
Filstorlek 35.98 KB
Antal Installationer 77
Aktuell Version 2.0
Senast Uppdaterad 2024-02-02
Publiceringsdatum 2020-07-17
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare nidushan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://test.nidushan.com/JanMain/privacy/
Hjälpsida URL https://test.nidushan.com/JanMain/privacy/
URL till Sekretesspolicy Sidan https://test.nidushan.com/Folio/privacy.html
Stödda Språk 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]"
        }
    }
}