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 |
官方網址 | 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 |
電子郵箱 | [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" } } } |