Export HumbleBundle Library to JSON

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

Export HumbleBundle Library to JSON란 무엇입니까?

Export HumbleBundle Library to JSON은(는) jtara1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Store information of all your unredeemed games from humblebundle.com in JSON file"입니다.

확장 프로그램 스크린샷

screenshot

Export HumbleBundle Library to JSON 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Export HumbleBundle Library to JSON Export HumbleBundle Library to JSON
ID pkkkphehloknahihekpiaemeaajpbflm
공식 URL https://chromewebstore.google.com/detail/export-humblebundle-libra/pkkkphehloknahihekpiaemeaajpbflm
설명 Store information of all your unredeemed games from humblebundle.com in JSON file
파일 크기 13.25 KB
설치 횟수 330
현재 버전 1.0.0
최근 업데이트 2020-05-17
출시 날짜 2020-05-16
평점 4.00/5 총 4 개의 평점
개발자 jtara1
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jtara1/ExportHumbleBundleLibrary
도움말 페이지 URL https://github.com/jtara1/ExportHumbleBundleLibrary
지원되는 언어 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"
            ]
        }
    ]
}