steamID Display
Display of steam users IDs.
steamID Display क्या है?
steamID Display nidushan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display of steam users IDs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में steamID Display एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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! एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | ldkfpahjhbighlajfnbehegfpmjpfgmj |
| आधिकारिक URL | https://chromewebstore.google.com/detail/steamid-display/ldkfpahjhbighlajfnbehegfpmjpfgmj |
| विवरण | Display of steam users IDs. |
| फ़ाइल का आकार | 35.98 KB |
| स्थापना संख्या | 77 |
| वर्तमान संस्करण | 2.0 |
| अंतिम अपडेट | 2024-02-02 |
| प्रकाशन तिथि | 2020-07-17 |
| रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
| डेवलपर | nidushan |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| एक्सटेंशन वेबसाइट | https://test.nidushan.com/JanMain/privacy/ |
| सहायता पृष्ठ URL | https://test.nidushan.com/JanMain/privacy/ |
| गोपनीयता नीति पृष्ठ URL | https://test.nidushan.com/Folio/privacy.html |
| समर्थित भाषाएँ | 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]"
}
}
} | |