Prettier Lichess
Lichess, but prettier.
Prettier Lichess क्या है?
Prettier Lichess kieferro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lichess, but prettier."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Prettier Lichess एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } } |