HumbleBundle Free Games

A simple extension that collects data from HubleBundle and notifies the user if there is a free product.

Qu'est-ce que HumbleBundle Free Games ?

HumbleBundle Free Games est une extension Chrome développée par Ivan Angelov, et sa fonction principale est "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HumbleBundle Free Games

Téléchargez les fichiers d'extension HumbleBundle Free Games 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

                        This extension periodically checks the offers on the Humble Bundle's store and shows notifications if there are any free products available.
The extension does NOT require Humble Bundle account and is not aware if the user have one as it communicates directly with their store API.  

For bug reports: https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues                    

Informations de Base sur l'Extension

Nom HumbleBundle Free Games HumbleBundle Free Games
ID jfhjckfaaeolcgcfmfkjiggjhebigcfe
URL Officiel https://chromewebstore.google.com/detail/humblebundle-free-games/jfhjckfaaeolcgcfmfkjiggjhebigcfe
Description A simple extension that collects data from HubleBundle and notifies the user if there is a free product.
Taille du Fichier 28.5 KB
Nombre d'Installations 589
Version Actuelle 1.3.3
Dernière Mise à Jour 2019-12-30
Date de Publication 2019-12-30
Évaluation 5.00/5 Total 3 Évaluations
Développeur Ivan Angelov
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HumbleBundle Free Games",
    "version": "1.3.3",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "author": "Ivan Angelov",
    "description": "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.",
    "manifest_version": 2,
    "permissions": [
        "alarms",
        "storage",
        "https:\/\/www.humblebundle.com\/"
    ],
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_title": "Click to view products"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}