Notion to PDF
Export Notion documents to PDF files
Notion to PDF là gì?
Notion to PDF là một tiện ích mở rộng Chrome được phát triển bởi https://notiontopdf.site, và tính năng chính của nó là "Export Notion documents to PDF files".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notion to PDF
Tải xuống các tệp mở rộng Notion to PDF dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Notion to PDF is a Powerful tool that can help free notion users to quickly export Notion documents to PDF in bulk, and support bulk export of Notion documents shared by others. Customizable page setup with headers, footers, watermarks, and margins. Ideal for students and professionals. Simplify your workflow with Notion to PDF.💗 Version 0.3.0: New Features: - Supports export directly from Side Peek. Version 0.2.2: - Fix some bugs - Optimize UI experience Version 0.2.1: Features: - Automatic recognition of table lines to avoid truncation of table content - support of multi-column documents Version 0.2.0: Fix some bugs: - Importing a DB type page, the table footer appears in the wrong place Version 0.1.9: Features: - Option to choose smaller export button to make the interface more streamlined Version 0.1.8: - Fix some bugs - Optimize UI experience Version 0.1.7: Features: 💪 - New Color quality option, using different quality will adjust the exported PDF file size, using the "Medium" option to export the PDF file size of about 1/5 of the original size. - Performance optimization for exporting PDF files Version 0.1.6: Some bugs were fixed Version 0.1.4: - Support for A3 size paper - Export performance optimization Version 0.1.3: Some bugs were fixed Version 0.1.2: Features: 💪 - We are pleased to announce a big update to the Notion to PDF that includes a page setup feature. With this update, you can customize headers, footers, watermarks and margins to enhance your PDF documents Version 0.1.1: - Support for dark mode of Notion Version 0.1.0: - Support for more paper size and paper orientation Version 0.0.9: Features: - Use the original title as the name of the exported PDF file (thanks to Giorgia for the suggestion) Version 0.0.8: Some bugs were fixed Version 0.0.7 : Enchantment: - Export performance optimization - Improved page element compatibility Version 0.0.6 : Bugs fixed: - Fixed the issue of incorrect font size of exported PDF titles Version 0.0.5 : - Export performance optimization Version 0.0.4 : Bugs fixed: - Fixed the issue of truncated images and text Features: - Support for exporting Notion documents containing tables
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Notion to PDF |
ID | pionfefhjikbcffjfcfnjmmabfpblpma |
URL Chính Thức | https://chromewebstore.google.com/detail/notion-to-pdf/pionfefhjikbcffjfcfnjmmabfpblpma |
Mô tả | Export Notion documents to PDF files |
Kích Thước Tệp | 588 KB |
Số Lần Cài Đặt | 8,000 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2024-02-28 |
Ngày Phát Hành | 2022-09-28 |
Đánh Giá | 3.97/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | https://notiontopdf.site |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.notiontopdf.site |
URL Trang Trợ Giúp | https://www.notiontopdf.site/NotionToPDFUserManual.html |
URL Trang Chính Sách Bảo Mật | https://www.notiontopdf.site/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion to PDF", "version": "0.3.0", "description": "Export Notion documents to PDF files", "action": { "default_icon": { "16": "images\/icon-16px.png", "32": "images\/icon-32px.png", "48": "images\/icon-48px.png", "128": "images\/icon-128px.png" }, "default_title": "Notion to PDF", "default_popup": "popup.html" }, "background": { "service_worker": "background.min.js" }, "icons": { "16": "images\/icon-16px.png", "32": "images\/icon-32px.png", "48": "images\/icon-48px.png", "128": "images\/icon-128px.png" }, "options_ui": { "page": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.nftpowertool.com\/*", "https:\/\/*.notion.so\/*", "https:\/\/*.notion.site\/*", "https:\/\/*.notiontopdf.site\/*" ], "js": [ "libs\/jquery-3.6.0.min.js", "libs\/html2canvas.min.js", "libs\/FileSaver.min.js", "libs\/jspdf.umd.min.js", "libs\/pako.min.js", "libs\/UPNG.js", "content.min.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "permissions": [ "storage", "alarms" ], "host_permissions": [ "https:\/\/*.ntfpowertool.com\/*", "http:\/\/*.ntfpowertool.com\/*", "https:\/\/*.notion.so\/*", "https:\/\/*.notion.site\/*", "https:\/\/*.notiontopdf.site\/*" ] } |