Lichess print-friendly PDF
Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.
Qu'est-ce que Lichess print-friendly PDF ?
Lichess print-friendly PDF est une extension Chrome développée par Robert Anderson, et sa fonction principale est "Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Lichess print-friendly PDF
Téléchargez les fichiers d'extension Lichess print-friendly PDF au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension has the following features: * Exports any finished lichess.com game to a pretty-printed PDF with diagrams, analysis and move timings where available. * Supports all lichess variants. Source code is on Github here: https://github.com/ZeroSharp/lichess.org_pdf_Chrome_extension Source code for the serverless back-end is here: https://github.com/ZeroSharp/serverless-lichess-to-pdf I am not affiliated in any way with lichess. Thanks to James Clarke who wrote the original PHP exporter.
Informations de Base sur l'Extension
Nom | Lichess print-friendly PDF |
ID | goijhimgdjppmhmjkaglhggoapkgobfg |
URL Officiel | https://chromewebstore.google.com/detail/lichess-print-friendly-pd/goijhimgdjppmhmjkaglhggoapkgobfg |
Description | Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file. |
Taille du Fichier | 83.29 KB |
Nombre d'Installations | 988 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2022-06-21 |
Date de Publication | 2019-05-11 |
Évaluation | 4.00/5 Total 8 Évaluations |
Développeur | Robert Anderson |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | http://www.zerosharp.com |
Langues Prises en Charge | en |
manifest.json | |
{ "name": "__MSG_name__", "version": "3.0.0", "manifest_version": 3, "description": "__MSG_description__", "homepage_url": "http:\/\/www.zerosharp.com", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "128": "icons\/knight128.png", "16": "icons\/knight16.png", "256": "icons\/knight256.png", "32": "icons\/knight32.png", "512": "icons\/knight512.png", "64": "icons\/knight64.png", "48": "icons\/knight48.png" }, "default_locale": "en", "content_scripts": [ { "js": [ "js\/jquery-3.5.1.min.js", "src\/bg\/exporttopdf.js" ], "matches": [ "https:\/\/*.lichess.org\/*" ] } ], "action": { "default_icon": { "128": "icons\/knight128.png", "16": "icons\/knight16.png", "256": "icons\/knight256.png", "32": "icons\/knight32.png", "512": "icons\/knight512.png", "64": "icons\/knight64.png", "48": "icons\/knight48.png" } } } |