Humble Bundle Steam Tool

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

Qu'est-ce que Humble Bundle Steam Tool ?

Humble Bundle Steam Tool est une extension Chrome développée par owlcultist, et sa fonction principale est "A extensions that displays the steam links and current prices of all links in a humble bundle!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Humble Bundle Steam Tool

Téléchargez les fichiers d'extension Humble Bundle Steam Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Humble Bundle Steam Tool Humble Bundle Steam Tool
ID ahmonoblnjablldpcllbmkfmcnjbfkbb
URL Officiel https://chrome.google.com/webstore/detail/humble-bundle-steam-tool/ahmonoblnjablldpcllbmkfmcnjbfkbb
Description A extensions that displays the steam links and current prices of all links in a humble bundle!
Taille du Fichier 232 KB
Nombre d'Installations 361
Version Actuelle 0.4
Dernière Mise à Jour 2019-05-04
Date de Publication 2019-05-04
Évaluation 2.33/5 Total 3 Évaluations
Développeur owlcultist
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}