HumbleBundle Free Games

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

O que é HumbleBundle Free Games?

HumbleBundle Free Games é uma extensão do Chrome desenvolvida por Ivan Angelov, e sua principal característica é "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HumbleBundle Free Games

Baixe arquivos de extensão HumbleBundle Free Games no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome HumbleBundle Free Games HumbleBundle Free Games
ID jfhjckfaaeolcgcfmfkjiggjhebigcfe
URL Oficial https://chromewebstore.google.com/detail/humblebundle-free-games/jfhjckfaaeolcgcfmfkjiggjhebigcfe
Descrição A simple extension that collects data from HubleBundle and notifies the user if there is a free product.
Tamanho do Arquivo 28.5 KB
Contagem de Instalações 589
Versão Atual 1.3.3
Última Atualização 2019-12-30
Data de Publicação 2019-12-30
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Ivan Angelov
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues
Idiomas Suportados 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
    }
}