Prettier Lichess
Lichess, but prettier.
Prettier Lichessとは何ですか?
Prettier Lichessはkieferroによって開発されたChromeの拡張機能で、その主な機能は「Lichess, but prettier.」です。
拡張機能のスクリーンショット
Prettier Lichess拡張機能のCRXファイルをダウンロード
Prettier Lichess拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Prettier Lichess takes the wonderful lichess.org and gives it a facelift. Now with a more contemporary look, the site can also be customized via the extension to change its various colors. You can also change between Prettier's default layout & Lichess' default layout. If you're a streamer, the extension offers a "vertical layout" option on game pages that allow you to make the game layout more streamer friendly. This extension is open source and collaborative. Come to the Github to open an issue or to poke around the source code yourself. https://prettierlichess.github.io/ https://github.com/prettierlichess/prettierlichess
拡張機能の基本情報
名前 | Prettier Lichess |
ID | epgnobcgnmchnhgkgpedebbmhbblfcob |
公式URL | https://chromewebstore.google.com/detail/prettier-lichess/epgnobcgnmchnhgkgpedebbmhbblfcob |
説明 | Lichess, but prettier. |
ファイルサイズ | 337 KB |
インストール数 | 8,143 |
現在のバージョン | 3.11.0 |
最終更新日 | 2023-10-30 |
公開日 | 2021-02-23 |
評価 | 4.58/5 合計 76 レビュー |
開発者 | kieferro |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://prettierlichess.github.io/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Prettier Lichess", "version": "3.11.0", "manifest_version": 2, "description": "Lichess, but prettier.", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/lichess.org\/*" ], "exclude_matches": [ "*:\/\/lichess.org\/api*" ], "run_at": "document_start", "css": [ "styles.css" ], "js": [ "content.js" ], "all_frames": true }, { "matches": [ "*:\/\/lichess.org\/*" ], "run_at": "document_idle", "js": [ "postLoad.js" ], "all_frames": true } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "declarativeContent", "downloads", "*:\/\/lichess.org\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self'; object-src 'self';", "web_accessible_resources": [ "styles.css", "fonts\/*", "pieces\/*", "masks\/*" ], "browser_specific_settings": { "gecko": { "id": "{8ad4bea8-ad8d-4e98-b434-a76065dee6cb}", "strict_min_version": "57.0" } } } |