Flip Lichess Knights
Flip the direction of the knights on lichess.org
Flip Lichess Knights là gì?
Flip Lichess Knights là một tiện ích mở rộng Chrome được phát triển bởi Sam Sweeney, và tính năng chính của nó là "Flip the direction of the knights on lichess.org".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Flip Lichess Knights
Tải xuống các tệp mở rộng Flip Lichess Knights dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cdkfpbdifpndnncjmfciiphhfjjfbpad |
URL Chính Thức | https://chromewebstore.google.com/detail/flip-lichess-knights/cdkfpbdifpndnncjmfciiphhfjjfbpad |
Mô tả | Flip the direction of the knights on lichess.org |
Kích Thước Tệp | 30.63 KB |
Số Lần Cài Đặt | 38 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2021-03-18 |
Ngày Phát Hành | 2021-03-18 |
Nhà Phát Triển | Sam Sweeney |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |