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