cleanly print
cleanly print the web page as pdf
cleanly print란 무엇입니까?
cleanly print은(는) suziwen1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "cleanly print the web page as pdf"입니다.
확장 프로그램 스크린샷
cleanly print 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
### cleanly print Select what you want print the part area of the page, and remove annoying elements, then print a clean PDF. Features * simple and easy, just select what you want, and delete what you do not wish to, then print. Steps * Right-click the mouse, trigger the context menu, and Select the `cleanly print` menu. * Move the cursor to select which area will be printed, and then press the `keep` button * Move the cursor to select which area will be removed, and then press the `exclude` button * Press the `Print` button, and Done. Shortcuts a: Keep the selected area, remove other elements s: Remove the selected area d: Cancel the selected area, reselect a new area f: Cancel all removed elements g: Print to PDF q: Expand the selected area w: Narrow the selected area ESC: Exit `cleanly print` mode
확장 프로그램 기본 정보
이름 | cleanly print |
ID | afloocnncgjhdlacbejppjepboilajdg |
공식 URL | https://chromewebstore.google.com/detail/cleanly-print/afloocnncgjhdlacbejppjepboilajdg |
설명 | cleanly print the web page as pdf |
파일 크기 | 71.07 KB |
설치 횟수 | 56 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2023-06-20 |
출시 날짜 | 2023-06-01 |
개발자 | suziwen1 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": "icons\/clean.png" }, "content_scripts": [ { "all_frames": false, "js": [ "clean_content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "cleanly print the web page as pdf", "icons": { "16": "icons\/clean-16.png", "32": "icons\/clean-32.png", "48": "icons\/clean-48.png", "128": "icons\/clean-128.png" }, "incognito": "spanning", "manifest_version": 3, "name": "cleanly print", "permissions": [ "activeTab", "contextMenus", "scripting" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.2" } |