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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A extensions that displays the steam links and current prices of all links in a humble bundle!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Humble Bundle Steam Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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
}