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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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