Lichess coord helper
Overlay co-ordinates on each square on lichess.com
什么是Lichess coord helper?
Lichess coord helper是由darajava开发的Chrome扩展程序,该扩展的主要功能是“Overlay co-ordinates on each square on lichess.com”。
扩展截图
下载Lichess coord helper扩展crx文件
下载Lichess coord helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Fill out coordinates on lichess.org to get more familiar with them. 扩展基本信息
| 名称 | |
| ID | phjjblkcjghdlejdkcibenepiehehpbj |
| 官方URL | https://chromewebstore.google.com/detail/lichess-coord-helper/phjjblkcjghdlejdkcibenepiehehpbj |
| 简介 | Overlay co-ordinates on each square on lichess.com |
| 文件大小 | 100 KB |
| 安装次数 | 38 |
| 当前版本 | 1.05 |
| 更新时间 | 2019-01-22 |
| 上架时间 | 2019-01-22 |
| 评分 | 3.33/5 共3次评分 |
| 开发者 | darajava |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Lichess coord helper",
"short_name": "Lichess coords",
"description": "Overlay co-ordinates on each square on lichess.com",
"version": "1.05",
"author": "Dara Javaherian",
"permissions": [
"*:\/\/*.lichess.org\/*"
],
"background": {
"persistent": true,
"scripts": [
"bg\/background.js"
]
},
"icons": {
"128": "icons\/youtube-128.png"
},
"browser_action": {
"default_icon": "icons\/icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/lichess.org\/*",
"http:\/\/lichess.org\/*"
],
"js": [
"js\/jquery.js",
"js\/inject.js"
],
"css": [
"styles\/styles.css"
]
}
]
} | |