Activate on Steam

Adds a context menu to activate the selected text on Steam

Qu'est-ce que Activate on Steam ?

Activate on Steam est une extension Chrome développée par jshackles, et sa fonction principale est "Adds a context menu to activate the selected text on Steam".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Activate on Steam

Téléchargez les fichiers d'extension Activate on Steam au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
URL Officiel https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Description Adds a context menu to activate the selected text on Steam
Taille du Fichier 31.62 KB
Nombre d'Installations 2,000
Version Actuelle 0.1
Dernière Mise à Jour 2017-09-01
Date de Publication 2017-09-01
Évaluation 4.33/5 Total 39 Évaluations
Développeur jshackles
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}