Lichess print-friendly PDF

Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.

Τι είναι το Lichess print-friendly PDF;

Το Lichess print-friendly PDF είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Robert Anderson, και η κύρια λειτουργία του είναι "Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Lichess print-friendly PDF

Λήψη αρχείων επέκτασης Lichess print-friendly PDF σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Lichess print-friendly PDF Lichess print-friendly PDF
ID goijhimgdjppmhmjkaglhggoapkgobfg
Επίσημο URL https://chromewebstore.google.com/detail/lichess-print-friendly-pd/goijhimgdjppmhmjkaglhggoapkgobfg
Περιγραφή Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.
Μέγεθος Αρχείου 83.29 KB
Αριθμός Εγκαταστάσεων 988
Τρέχουσα Έκδοση 3.0.0
Τελευταία Ενημέρωση 2022-06-21
Ημερομηνία Δημοσίευσης 2019-05-11
Αξιολόγηση 4.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Robert Anderson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας http://www.zerosharp.com
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}