Export HumbleBundle Library to JSON

Store information of all your unredeemed games from humblebundle.com in JSON file

¿Qué es Export HumbleBundle Library to JSON?

Export HumbleBundle Library to JSON es una extensión de Chrome desarrollada por jtara1, y su función principal es "Store information of all your unredeemed games from humblebundle.com in JSON file".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Export HumbleBundle Library to JSON

Descarga archivos de extensión Export HumbleBundle Library to JSON 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

                        Steps to use:

1. Install this extension
2. Go to https://www.humblebundle.com/home/keys (need to be logged in at humblebundle.com)
3. Click on the `Export Humble Bundle as JSON` button above your list of games.

You should now have a file `Humble_Bundle_Games.json` saved through chrome as a local file on you pc. 

If not, press F12, select and copy errors there from Console and paste them in a new issue at https://github.com/jtara1/ExportHumbleBundleLibrary/issues or report issue via feedback through chrome web store.

sample output: https://pastebin.com/X7jk9buh

support me and my projects 
https://ko-fi.com/jtara1                    

Información Básica de la Extensión

Nombre Export HumbleBundle Library to JSON Export HumbleBundle Library to JSON
ID pkkkphehloknahihekpiaemeaajpbflm
URL Oficial https://chromewebstore.google.com/detail/export-humblebundle-libra/pkkkphehloknahihekpiaemeaajpbflm
Descripción Store information of all your unredeemed games from humblebundle.com in JSON file
Tamaño del Archivo 13.25 KB
Cantidad de Instalaciones 330
Versión Actual 1.0.0
Última Actualización 2020-05-17
Fecha de Publicación 2020-05-16
Calificación 4.00/5 Total de 4 Calificaciones
Desarrollador jtara1
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jtara1/ExportHumbleBundleLibrary
URL de la Página de Ayuda https://github.com/jtara1/ExportHumbleBundleLibrary
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Export HumbleBundle Library to JSON",
    "version": "1.0.0",
    "icons": [],
    "description": "Store information of all your unredeemed games from humblebundle.com in JSON file",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.humblebundle.com\/home\/keys"
            ],
            "js": [
                "scripts\/FileSaver.js",
                "scripts\/main.js"
            ]
        }
    ]
}