Activate on Steam

Adds a context menu to activate the selected text on Steam

Activate on Steam là gì?

Activate on Steam là một tiện ích mở rộng Chrome được phát triển bởi jshackles, và tính năng chính của nó là "Adds a context menu to activate the selected text on Steam".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Activate on Steam

Tải xuống các tệp mở rộng Activate on Steam dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Activate on Steam Activate on Steam
ID pofgpbehpaaadihajegaefaggfenhmpc
URL Chính Thức https://chrome.google.com/webstore/detail/activate-on-steam/pofgpbehpaaadihajegaefaggfenhmpc
Mô tả Adds a context menu to activate the selected text on Steam
Kích Thước Tệp 31.62 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-09-01
Ngày Phát Hành 2017-09-01
Đánh Giá 4.33/5 Tổng số 39 Đánh Giá
Nhà Phát Triển jshackles
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}