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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } } |