Export HumbleBundle Library to JSON

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

Co to jest Export HumbleBundle Library to JSON?

Export HumbleBundle Library to JSON to rozszerzenie Chrome opracowane przez jtara1, a jego główną funkcją jest „Store information of all your unredeemed games from humblebundle.com in JSON file”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Export HumbleBundle Library to JSON

Pobierz pliki rozszerzeń Export HumbleBundle Library to JSON w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Export HumbleBundle Library to JSON Export HumbleBundle Library to JSON
ID pkkkphehloknahihekpiaemeaajpbflm
Oficjalny URL https://chromewebstore.google.com/detail/export-humblebundle-libra/pkkkphehloknahihekpiaemeaajpbflm
Opis Store information of all your unredeemed games from humblebundle.com in JSON file
Rozmiar pliku 13.25 KB
Liczba instalacji 330
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-05-17
Data Publikacji 2020-05-16
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper jtara1
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jtara1/ExportHumbleBundleLibrary
Adres URL Strony Pomocy https://github.com/jtara1/ExportHumbleBundleLibrary
Obsługiwane Języki 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"
            ]
        }
    ]
}