Time Odds For Lichess
Easily give time odds to your opponent.
什么是Time Odds For Lichess?
Time Odds For Lichess是由Team Doko开发的Chrome扩展程序,该扩展的主要功能是“Easily give time odds to your opponent.”。
扩展截图
下载Time Odds For Lichess扩展crx文件
下载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" ] } ] } |