Webpage to Markdown and PDF
A Chrome extension to capture web page to markdown and PDF format
什麼是Webpage to Markdown and PDF?
Webpage to Markdown and PDF是由sunpy1106開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to capture web page to markdown and PDF format”。
擴展截圖
下載Webpage to Markdown and PDF擴展crx文件
下載Webpage to Markdown and PDF擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension that enables users to automatically detect and capture the main content of webpages in both Markdown and PDF formats. This user-friendly tool streamlines the process of saving and sharing important information from websites for personal or professional use. Features: Automatically detect and extract the main content from webpages. Export the extracted content as a Markdown file for easy editing and sharing. Export the extracted content as a PDF file to maintain a consistent appearance across devices. Wait for images within the content to load before exporting as a PDF, ensuring a complete and accurate representation. Usage: Install the Web Page Capture Plugin from the Chrome Web Store, and simply click on the extension icon to access its features. The plugin will automatically detect and extract the main content of the webpage you are browsing. Choose whether you want to export the content as Markdown or PDF, and the extracted content will be saved in your desired format, ready to be used as needed. Ideal for students, researchers, and professionals, the Web Page Capture Plugin is a convenient tool that simplifies the process of collecting and sharing valuable information from webpages. Try it today and experience the efficiency it brings to your daily browsing
擴展基本資訊
名稱 | Webpage to Markdown and PDF |
ID | dmnehnhbjmiipdlgckbgbpflakpfdbep |
官方網址 | https://chromewebstore.google.com/detail/webpage-to-markdown-and-p/dmnehnhbjmiipdlgckbgbpflakpfdbep |
簡介 | A Chrome extension to capture web page to markdown and PDF format |
檔案大小 | 273 KB |
安裝次數 | 71 |
目前版本 | 1.0 |
更新時間 | 2023-05-16 |
上架時間 | 2023-05-16 |
評分 | 1.00/5 共 1 次評分 |
開發者 | sunpy1106 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Webpage to Markdown and PDF", "version": "1.0", "description": "A Chrome extension to capture web page to markdown and PDF format", "action": { "default_popup": "popup.html", "default_icon": { "48": "icons48.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js", "Readability.js" ] } ], "icons": { "48": "icons48.png" } } |