Activate on Steam

Adds a context menu to activate the selected text on Steam

What is Activate on Steam?

Activate on Steam is a Chrome extension developed by jshackles, and its main feature is "Adds a context menu to activate the selected text on Steam".

Extension Screenshots

screenshot

Download Activate on Steam Extension CRX File

Download Activate on Steam extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
Official URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Description Adds a context menu to activate the selected text on Steam
File Size 31.62 KB
Installation Count 2,000
Current Version 0.1
Last Updated 2017-09-01
Publish Date 2017-09-01
Rating 4.33/5 Total 39 Ratings
Developer jshackles
Payment Type free
Supported Languages 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"
        }
    }
}