Activate on Steam

Adds a context menu to activate the selected text on Steam

Что такое Activate on Steam?

Activate on Steam - это расширение Chrome, разработанное jshackles, и его основная функция - "Adds a context menu to activate the selected text on Steam".

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

screenshot

Скачать файл CRX расширения Activate on Steam

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

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

                        This simple Chrome extension will add a context menu when right clicking on selected text to activate as a Steam product.

This is useful for external sites that sell Steam keys and allows you to quickly and easily register your games on Steam without having to copy and paste or open the Steam client.

This extension is open source.  The source code can be found at https://github.com/jshackles/ActivateOnSteam                    

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

Название Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Официальный URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Описание Adds a context menu to activate the selected text on Steam
Размер файла 31.62 KB
Количество установок 2,000
Текущая Версия 0.1
Последнее Обновление 2017-09-01
Дата публикации 2017-09-01
Рейтинг 4.33/5 Всего 39 оценок
Разработчик jshackles
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Activate on Steam",
    "short_name": "ActivateOnSteam",
    "description": "Adds a context menu to activate the selected text on Steam",
    "version": "0.1",
    "minimum_chrome_version": "38",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "img\/logo.png",
        "32": "img\/logo_32.png",
        "128": "img\/logo_128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "img\/logo.png",
            "32": "img\/logo_32.png",
            "128": "img\/logo_128.png"
        }
    }
}