Humble Bundle Steam Tool

A extensions that displays the steam links and current prices of all links in a humble bundle!

Humble Bundle Steam Toolとは何ですか?

Humble Bundle Steam Toolはowlcultistによって開発されたChromeの拡張機能で、その主な機能は「A extensions that displays the steam links and current prices of all links in a humble bundle!」です。

拡張機能のスクリーンショット

screenshot

Humble Bundle Steam Tool拡張機能のCRXファイルをダウンロード

Humble Bundle Steam Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple extension to make browsing humble bundles easier. Injects steam links into the page, as well as displays current price on steam. Currently supports Canadian, US, UK, and Australian currencies.

- Currently does not work on  steam bundles.

Please give me feedback! This was just a small personal project I am working on outside of class. I would love to hear of ways to improve it!                    

拡張機能の基本情報

名前 Humble Bundle Steam Tool Humble Bundle Steam Tool
ID ahmonoblnjablldpcllbmkfmcnjbfkbb
公式URL https://chrome.google.com/webstore/detail/humble-bundle-steam-tool/ahmonoblnjablldpcllbmkfmcnjbfkbb
説明 A extensions that displays the steam links and current prices of all links in a humble bundle!
ファイルサイズ 232 KB
インストール数 361
現在のバージョン 0.4
最終更新日 2019-05-04
公開日 2019-05-04
評価 2.33/5 合計 3 レビュー
開発者 owlcultist
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Humble Bundle Steam Tool",
    "version": "0.4",
    "description": "A extensions that displays the steam links and current prices of all links in a humble bundle!",
    "permissions": [
        "https:\/\/www.humblebundle.com\/games\/*",
        "declarativeContent",
        "storage",
        "https:\/\/store.steampowered.com\/api\/",
        "http:\/\/api.steampowered.com\/ISteamApps\/GetAppList\/v0002\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.humblebundle.com\/games\/*"
            ],
            "css": [
                "popup.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/ajax-loader.gif",
        "popup,css"
    ],
    "content_security_policy": "script-src 'self' ; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/extensionIcon16.png",
            "32": "images\/extensionIcon32.png",
            "48": "images\/extensionIcon48.png",
            "128": "images\/extensionIcon128.png"
        }
    },
    "icons": {
        "16": "images\/extensionIcon16.png",
        "32": "images\/extensionIcon32.png",
        "48": "images\/extensionIcon48.png",
        "128": "images\/extensionIcon128.png"
    },
    "manifest_version": 2
}