Activate on Steam

Adds a context menu to activate the selected text on Steam

什么是Activate on Steam?

Activate on Steam是由jshackles开发的Chrome扩展程序,该扩展的主要功能是“Adds a context menu to activate the selected text on Steam”。

扩展截图

screenshot

下载Activate on Steam扩展crx文件

下载Activate on Steam扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
官方URL https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
简介 Adds a context menu to activate the selected text on Steam
文件大小 31.62 KB
安装次数 2,000
当前版本 0.1
更新时间 2017-09-01
上架时间 2017-09-01
评分 4.33/5 共39次评分
开发者 jshackles
付费类型 free
支持的语言 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"
        }
    }
}