Bondage Club Tools
Enriches the experience for Bondage Club.
Bondage Club Toolsคืออะไร?
Bondage Club Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dutchie และคุณลักษณะหลักของมันคือ "Enriches the experience for Bondage Club."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bondage Club Tools
ดาวน์โหลดไฟล์ส่วนขยาย Bondage Club Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a popup which displays the current characters in the chat room, and an overview of your online friends. Includes chat and whisper logging which is stored locally, meaning that your chat logs never leave your computer. There is an interface to browse through past chat sessions as well. An overview of people you've met in the chat rooms gives you the opportunity to keep notes on them or read back their profile. The extension can also be configured to show notifications when someone mentions a certain word in chat and you're not looking. The overview of chat rooms can optionally be automatically refreshed with a configurable interval. Disabled by default, however, and can be enabled through the options page. No information about your account, your chat logs nor your friends ever leaves your computer. Given the nature of the game, I believe that any sort of tracking, logging or analytics has no place in this extension. Feedback is always welcomed and can be given through GitHub.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pgigbkbcecbpgijnfhmpmkipgondpnpc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/bondage-club-tools/pgigbkbcecbpgijnfhmpmkipgondpnpc |
คำอธิบาย | Enriches the experience for Bondage Club. |
ขนาดไฟล์ | 433 KB |
จำนวนการติดตั้ง | 458 |
เวอร์ชันปัจจุบัน | 0.5.0 |
อัปเดตครั้งล่าสุด | 2023-03-27 |
วันที่เผยแพร่ | 2020-10-31 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Dutchie |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Dutchie322/bclub-tools |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bondage Club Tools", "description": "Enriches the experience for Bondage Club.", "version": "0.5.0", "manifest_version": 2, "icons": { "128": "assets\/bclub-logo.png" }, "background": { "scripts": [ "background\/main.js" ], "persistent": false }, "browser_action": { "default_title": "Bondage Club Tools", "default_icon": { "128": "assets\/bclub-logo.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.bondageprojects.com\/*", "*:\/\/*.bondageprojects.elementfx.com\/*", "*:\/\/*.bondage-europe.com\/*" ], "run_at": "document_idle", "js": [ "content-script\/main.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "notifications", "storage", "unlimitedStorage", "*:\/\/*.bondageprojects.com\/*", "*:\/\/*.bondageprojects.elementfx.com\/*", "*:\/\/*.bondage-europe.com\/*" ], "options_ui": { "browser_style": false, "open_in_tab": true, "page": "index.html?page=\/options" } } |