HumbleBundle Free Games

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

¿Qué es HumbleBundle Free Games?

HumbleBundle Free Games es una extensión de Chrome desarrollada por Ivan Angelov, y su función principal es "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión HumbleBundle Free Games

Descarga archivos de extensión HumbleBundle Free Games en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre HumbleBundle Free Games HumbleBundle Free Games
ID jfhjckfaaeolcgcfmfkjiggjhebigcfe
URL Oficial https://chromewebstore.google.com/detail/humblebundle-free-games/jfhjckfaaeolcgcfmfkjiggjhebigcfe
Descripción A simple extension that collects data from HubleBundle and notifies the user if there is a free product.
Tamaño del Archivo 28.5 KB
Cantidad de Instalaciones 589
Versión Actual 1.3.3
Última Actualización 2019-12-30
Fecha de Publicación 2019-12-30
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Ivan Angelov
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues
Idiomas Soportados 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
    }
}