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"
        }
    }
}