Time Odds For Lichess
Easily give time odds to your opponent.
Time Odds For Lichessคืออะไร?
Time Odds For Lichess เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Team Doko และคุณลักษณะหลักของมันคือ "Easily give time odds to your opponent."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time Odds For Lichess
ดาวน์โหลดไฟล์ส่วนขยาย Time Odds For Lichess ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a button to give time odds to your opponent on lichess. That way you don't have to add time to your opponents time in 15 sec increments. After installing this extension look for a new button next to your time. Use this to give your opponent time odds. Click on the gear icon to adjust the odds. (Default is 120s).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Time Odds For Lichess |
ID | fmkpgandankbklomijglcfmnmafjflpj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/time-odds-for-lichess/fmkpgandankbklomijglcfmnmafjflpj |
คำอธิบาย | Easily give time odds to your opponent. |
ขนาดไฟล์ | 20.53 KB |
จำนวนการติดตั้ง | 151 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2022-09-11 |
วันที่เผยแพร่ | 2022-01-25 |
ผู้พัฒนา | Team Doko |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://teamdoko.com/products/time-odds-for-lichess/ |
URL หน้าช่วยเหลือ | https://teamdoko.com/support/ |
URL หน้านโยบายความเป็นส่วนตัว | https://teamdoko.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Time Odds For Lichess", "description": "Easily give time odds to your opponent.", "version": "1.0.0", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.lichess.org\/*" ], "icons": { "16": ".\/images\/time_odds_lichess_16.png", "32": ".\/images\/time_odds_lichess_32.png", "48": ".\/images\/time_odds_lichess_48.png", "128": ".\/images\/time_odds_lichess_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/lichess.org\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ] } |