Selection Print to PDF

Select a text and print it to PDF with a mouse right-click.

Selection Print to PDF란 무엇입니까?

Selection Print to PDF은(는) Steven Sanders에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select a text and print it to PDF with a mouse right-click."입니다.

확장 프로그램 스크린샷

screenshot

Selection Print to PDF 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The "Selection Print to PDF" extension enables you to print a portion of text or sentences to a PDF file.

To utilize this add-on, pick a word or sentence with your mouse and then right-click the selection before clicking on - Print Selection to PDF. The chosen text (only the text content) will be downloaded as a PDF file to your computer in the default download folder.

If you wish to alter the download location, go to your browser's settings page and make the change there. This add-on comes with a variety of options that may be viewed on the options page. For example, you may modify the layout, unit, typeface family, size style, or other elements.

This add-on generates a PDF document from HTML, CSS, and JavaScript files. To learn more about this library, please visit the GitHub (https://github.com/MrRio/jsPDF) page for jsPDF, which is a free and open-source client-side JavaScript PDF library.                    

확장 프로그램 기본 정보

이름 Selection Print to PDF Selection Print to PDF
ID kijpdipgbinekifdelmgfiigmoammghm
공식 URL https://chromewebstore.google.com/detail/selection-print-to-pdf/kijpdipgbinekifdelmgfiigmoammghm
설명 Select a text and print it to PDF with a mouse right-click.
파일 크기 280 KB
설치 횟수 498
현재 버전 0.1
최근 업데이트 2022-07-02
출시 날짜 2022-07-02
평점 4.68/5 총 25 개의 평점
개발자 Steven Sanders
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://worldaddons.com/selection-print-to-pdf/
도움말 페이지 URL https://worldaddons.com/contact/
개인정보 보호 정책 페이지 URL https://worldaddons.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Selection Print to PDF",
    "short_name": "selection-print-to-pdf",
    "homepage_url": "https:\/\/worldaddons.com\/selection-print-to-pdf\/",
    "description": "Select a text and print it to PDF with a mouse right-click.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "source\/options\/options.html"
    },
    "permissions": [
        "storage",
        "downloads",
        "contextMenus"
    ],
    "icons": {
        "16": "source\/icons\/16.png",
        "32": "source\/icons\/32.png",
        "48": "source\/icons\/48.png",
        "64": "source\/icons\/64.png",
        "128": "source\/icons\/128.png"
    }
}