Activate on Steam

Adds a context menu to activate the selected text on Steam

Activate on Steamคืออะไร?

Activate on Steam เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jshackles และคุณลักษณะหลักของมันคือ "Adds a context menu to activate the selected text on Steam"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Activate on Steam

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}