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
官方網址 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"
        }
    }
}