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是由Robert Anderson開發的Chrome擴展程式,該擴展的主要功能是“Restores the 'print-friendly PDF' feature of lichess. Exports any game as a pretty-printed PDF file.”。
擴展截圖
下載Lichess print-friendly PDF擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | goijhimgdjppmhmjkaglhggoapkgobfg |
| 官方網址 | 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"
}
}
} | |