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 |
Eメール | [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" ] } |