Donkhouse HUD
Heads-Up Display and hand history storage for donkhouse.com. Please report bugs to [email protected]. If you find this…
Donkhouse HUDคืออะไร?
Donkhouse HUD เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unrealduck Studios และคุณลักษณะหลักของมันคือ "Heads-Up Display and hand history storage for donkhouse.com. Please report bugs to [email protected]. If you find this…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Donkhouse HUD
ดาวน์โหลดไฟล์ส่วนขยาย Donkhouse HUD ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Heads-Up Display and hand history storage for donkhouse.com. Please report bugs to [email protected]. If you find this extension useful please consider donating to the project: PayPal: https://paypal.me/UnrealDuck Bitcoin: 1Gy8GQhvDBka6Sx1DwFPo1bh9Bs6gbZEEB Venmo: @ethleb Check the help page in the extension popup for more info. This project is open source! https://github.com/EthanLebowitz/DonkhouseHUD This software does not facilitate gambling, as there is no way to use real money on donkhouse.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Donkhouse HUD |
ID | kpekjglolgfjobcgpgnoiihdpfhndaco |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/donkhouse-hud/kpekjglolgfjobcgpgnoiihdpfhndaco |
คำอธิบาย | Heads-Up Display and hand history storage for donkhouse.com. Please report bugs to [email protected]. If you find this… |
ขนาดไฟล์ | 241 KB |
จำนวนการติดตั้ง | 141 |
เวอร์ชันปัจจุบัน | 0.9.5 |
อัปเดตครั้งล่าสุด | 2021-07-29 |
วันที่เผยแพร่ | 2020-09-23 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Unrealduck Studios |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Donkhouse HUD", "version": "0.9.5", "permissions": [ "storage" ], "content_security_policy": "default-src 'self'", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/donkhouse.com\/group\/*\/*" ], "js": [ "thirdParty\/jquery.min.js", "content.js" ] } ], "browser_action": { "default_popup": "popup.html" } } |