HumbleBundle Keys Clipboard

Save your Humble Bundle entitlements & keys data

HumbleBundle Keys Clipboard란 무엇입니까?

HumbleBundle Keys Clipboard은(는) Jimmi is Coding에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save your Humble Bundle entitlements & keys data"입니다.

확장 프로그램 스크린샷

screenshot

HumbleBundle Keys Clipboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Quickly copy a list of your Humble Bundle entitlements, save all your Humble Bundle data or filter it!

While viewing your Humble Bundle keys & entitlements page, 
simply click the button and wait for your file to save or for an alert letting you know that it has copied to your clipboard!


Example of list gathered via scraper: (Humble Choice's optional)
"
Train Valley 2
MotoGP 15
Chasm
Fluffy Horde

JANUARY 2020 HUMBLE CHOICE
5 choices remaining
GRIP + 1 DLC
Middle-earth™: Shadow of War™
Two Point Hospital
Street Fighter V
Whispers of a Machine
Mages of Mystralia
Unrailed!
"

The API call option can gather more information.
This information can contain: keys, download links, steam app ID, expiration, country restrictions and more!


Suggestions? Comments? or ???  

Please feel free to reach out I would love to hear some feedback.  
Discord: https://discord.gg/tgP8Mqh  
or via contact on store page.


---- v0.78 Release Notes ---

Scraper hotfix
    Some monthly choices no longer list remaining choices in their description.
        It was breaking the scraper if found and fetching.                    

확장 프로그램 기본 정보

이름 HumbleBundle Keys Clipboard HumbleBundle Keys Clipboard
ID cmepjcombnmfffjpnnnhmagpmdmnbedg
공식 URL https://chromewebstore.google.com/detail/humblebundle-keys-clipboa/cmepjcombnmfffjpnnnhmagpmdmnbedg
설명 Save your Humble Bundle entitlements & keys data
파일 크기 23.14 KB
설치 횟수 182
현재 버전 0.78
최근 업데이트 2022-07-17
출시 날짜 2020-05-23
평점 5.00/5 총 2 개의 평점
개발자 Jimmi is Coding
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/BeevMan/HumbleBundle-Keys-Clipboard
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HumbleBundle Keys Clipboard",
    "version": "0.78",
    "description": "Save your Humble Bundle entitlements & keys data",
    "manifest_version": 2,
    "content_security_policy": "default-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.humblebundle.com\/home\/keys*"
            ],
            "run_at": "document_idle",
            "js": [
                "scripts\/hbKeyPgNameScraper.js",
                "scripts\/FileSaver.js",
                "scripts\/universalFuncs.js",
                "scripts\/APIscript.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "icons\/32-clipboard.png",
        "options\/options.html"
    ],
    "icons": {
        "128": "icons\/128-clipboard.png",
        "48": "icons\/48-clipboard.png",
        "32": "icons\/32-clipboard.png",
        "16": "icons\/16-clipboard.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{94df1f6d-b104-4223-9563-d5514b15a3f3}"
        }
    }
}