Activate on Steam

Adds a context menu to activate the selected text on Steam

Co to jest Activate on Steam?

Activate on Steam to rozszerzenie Chrome opracowane przez jshackles, a jego główną funkcją jest „Adds a context menu to activate the selected text on Steam”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Activate on Steam

Pobierz pliki rozszerzeń Activate on Steam w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Oficjalny URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Opis Adds a context menu to activate the selected text on Steam
Rozmiar pliku 31.62 KB
Liczba instalacji 2,000
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-09-01
Data Publikacji 2017-09-01
Ocena 4.33/5 Łącznie 39 Oceny
Deweloper jshackles
Typ Płatności free
Obsługiwane Języki 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"
        }
    }
}