Selection Print to PDF

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

¿Qué es Selection Print to PDF?

Selection Print to PDF es una extensión de Chrome desarrollada por Steven Sanders, y su función principal es "Select a text and print it to PDF with a mouse right-click.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Selection Print to PDF

Descarga archivos de extensión Selection Print to PDF en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Selection Print to PDF Selection Print to PDF
ID kijpdipgbinekifdelmgfiigmoammghm
URL Oficial https://chromewebstore.google.com/detail/selection-print-to-pdf/kijpdipgbinekifdelmgfiigmoammghm
Descripción Select a text and print it to PDF with a mouse right-click.
Tamaño del Archivo 280 KB
Cantidad de Instalaciones 498
Versión Actual 0.1
Última Actualización 2022-07-02
Fecha de Publicación 2022-07-02
Calificación 4.68/5 Total de 25 Calificaciones
Desarrollador Steven Sanders
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://worldaddons.com/selection-print-to-pdf/
URL de la Página de Ayuda https://worldaddons.com/contact/
URL de la Página de Política de Privacidad https://worldaddons.com/privacy-policy
Idiomas Soportados 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"
    }
}