Flip Lichess Knights
Flip the direction of the knights on lichess.org
什么是Flip Lichess Knights?
Flip Lichess Knights是由Sam Sweeney开发的Chrome扩展程序,该扩展的主要功能是“Flip the direction of the knights on lichess.org”。
扩展截图
下载Flip Lichess Knights扩展crx文件
下载Flip Lichess Knights扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Flip Lichess Knights allows you to customize your board UI when playing chess on lichess.org. By default knights on Lichess face to the right. Flip Lichess Knights allows you to toggle their direction, so they can face either to the right or to the left.
扩展基本信息
名称 | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
官方URL | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
简介 | Flip the direction of the knights on lichess.org |
文件大小 | 30.63 KB |
安装次数 | 38 |
当前版本 | 0.0.0.1 |
更新时间 | 2021-03-18 |
上架时间 | 2021-03-18 |
开发者 | Sam Sweeney |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flip Lichess Knights", "description": "Flip the direction of the knights on lichess.org", "version": "0.0.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.lichess.org\/*" ], "js": [ "flip-knights.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ] } |