Activate on Steam

Adds a context menu to activate the selected text on Steam

Vad är Activate on Steam?

Activate on Steam är en Chrome-tillägg utvecklad av jshackles, och dess huvudfunktion är "Adds a context menu to activate the selected text on Steam".

Tilläggsskärmbilder

screenshot

Ladda ner Activate on Steam-förlängningens CRX-fil

Ladda ner Activate on Steam-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Officiell webbadress https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Beskrivning Adds a context menu to activate the selected text on Steam
Filstorlek 31.62 KB
Antal Installationer 2,000
Aktuell Version 0.1
Senast Uppdaterad 2017-09-01
Publiceringsdatum 2017-09-01
Betyg 4.33/5 Totalt 39 Betyg
Utvecklare jshackles
Betalningssätt free
Stödda Språk 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"
        }
    }
}