Activate on Steam

Adds a context menu to activate the selected text on Steam

Hvad er Activate on Steam?

Activate on Steam er en Chrome-udvidelse udviklet af jshackles, og dens hovedfunktion er "Adds a context menu to activate the selected text on Steam".

Udvidelsesskærmbilleder

screenshot

Download Activate on Steam-udvidelses-CRX-fil

Download Activate on Steam-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Officiel URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Beskrivelse Adds a context menu to activate the selected text on Steam
Filstørrelse 31.62 KB
Antal Installationer 2,000
Nuværende Version 0.1
Senest Opdateret 2017-09-01
Udgivelsesdato 2017-09-01
Bedømmelse 4.33/5 Samlet 39 Bedømmelser
Udvikler jshackles
Betalingsmetode free
Understøttede Sprog 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"
        }
    }
}