steamID Display

Display of steam users IDs.

Что такое steamID Display?

steamID Display - это расширение Chrome, разработанное nidushan, и его основная функция - "Display of steam users IDs.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения steamID Display

Скачайте файлы расширений steamID Display в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название steamID Display steamID Display
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]"
        }
    }
}