HumbleBundle Keys Clipboard

Save your Humble Bundle entitlements & keys data

HumbleBundle Keys Clipboardคืออะไร?

HumbleBundle Keys Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jimmi is Coding และคุณลักษณะหลักของมันคือ "Save your Humble Bundle entitlements & keys data"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HumbleBundle Keys Clipboard

ดาวน์โหลดไฟล์ส่วนขยาย HumbleBundle Keys Clipboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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}"
        }
    }
}