Prettier Lichess
Lichess, but prettier.
Что такое Prettier Lichess?
Prettier Lichess - это расширение Chrome, разработанное kieferro, и его основная функция - "Lichess, but prettier.".
Снимки экрана расширения
Скачать файл CRX расширения Prettier Lichess
Скачайте файлы расширений 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 |
Электронная почта | [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" } } } |