Activate on Steam

Adds a context menu to activate the selected text on Steam

O que é Activate on Steam?

Activate on Steam é uma extensão do Chrome desenvolvida por jshackles, e sua principal característica é "Adds a context menu to activate the selected text on Steam".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Activate on Steam

Baixe arquivos de extensão Activate on Steam no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
URL Oficial https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Descrição Adds a context menu to activate the selected text on Steam
Tamanho do Arquivo 31.62 KB
Contagem de Instalações 2,000
Versão Atual 0.1
Última Atualização 2017-09-01
Data de Publicação 2017-09-01
Classificação 4.33/5 Total de 39 Avaliações
Desenvolvedor jshackles
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}