Activate on Steam

Adds a context menu to activate the selected text on Steam

Wat is Activate on Steam?

Activate on Steam is een Chrome-extensie ontwikkeld door jshackles, en de belangrijkste functie is "Adds a context menu to activate the selected text on Steam".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Activate on Steam

Download Activate on Steam-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Officiële URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Beschrijving Adds a context menu to activate the selected text on Steam
Bestandsgrootte 31.62 KB
Aantal Installaties 2,000
Huidige Versie 0.1
Laatst Bijgewerkt 2017-09-01
Publicatiedatum 2017-09-01
Beoordeling 4.33/5 Totaal 39 Beoordelingen
Ontwikkelaar jshackles
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}