Convert Gmail™ to PDF (locally)

Convert your emails to PDF format on offline mode (without a server interaction; secure and private) to backup your emails

Convert Gmail™ to PDF (locally)คืออะไร?

Convert Gmail™ to PDF (locally) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "Convert your emails to PDF format on offline mode (without a server interaction; secure and private) to backup your emails"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Convert Gmail™ to PDF (locally)

ดาวน์โหลดไฟล์ส่วนขยาย Convert Gmail™ to PDF (locally) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds two new buttons to your Gmail interface. One orange PDF button and one blue PDF button. The orange button can be used to generate distraction-free PDF documents and the blue one generates a normal PDF document. It is also possible to press the toolbar button (action button) to convert multiple emails to PDF at once. For bulk conversion, you need to select a few threads first.

Features:
1. Supports all Gmail view modes (no split, right of inbox, below inbox)
2. Supports bulk conversion by selecting multiple threads at once
3. Support simple and advance printing with and without images
4. Extracts email date and use it in the archived name

Notes:
1. The orange button is called the "simple" mode of operation. In this mode, your emails are reformated and all the images, lines, and any other distracting elements are removed from the document before the PDF file is generated. This is useful to generate PDF for fast reading.

2. The blue button is called the "normal" mode of operation. In this mode, the "window.print()" function is called and the generated document is in the standard format.
3. This extension does NOT send your documents to an external server for conversion as this violates the user's privacy. The extension uses a local JavaScript library called jsPDF for all its conversions.
4. By default, no image is attached to your document if the "simple" mode is selected so that there would be no image fetching from remote servers.

For more info please visit:
https://add0n.com/to-pdf.html?from=gmail
To report bugs please visit:
https://github.com/ray-lothian/to-pdf/issues

Change Log:
version 0.1.5
1. You can now customize the filename
2. There are options to hide both or either print and simple mode buttons
3. The extension now embeds a few popular fonts to the PDF document so it will look better in the simple printing mode.
version 0.1.7
1. It is now possible to use managed storage to control settings
2. Font detection algorithm is improved
version 0.2.3
1. Extension supports printing in multiple logged-in accounts
version 0.2.4
1. Supports bulk conversion. Select a few threads and press the action button to convert each email to PDF one by one.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Convert Gmail™ to PDF (locally) Convert Gmail™ to PDF (locally)
ID kkdondhaomeongofcikoplakobapphcj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/convert-gmail-to-pdf-loca/kkdondhaomeongofcikoplakobapphcj
คำอธิบาย Convert your emails to PDF format on offline mode (without a server interaction; secure and private) to backup your emails
ขนาดไฟล์ 4.03 MB
จำนวนการติดตั้ง 11,695
เวอร์ชันปัจจุบัน 0.3.5
อัปเดตครั้งล่าสุด 2023-10-10
วันที่เผยแพร่ 2020-03-09
คะแนน 3.35/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/to-pdf.html
URL หน้าช่วยเหลือ https://webextension.org/listing/to-pdf.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ de,en,fr,nl,es,it,pl,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Convert Gmail\u2122 to PDF (locally)",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.3.5",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting",
        "declarativeContent"
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "\/data\/button\/index.css"
            ],
            "js": [
                "\/data\/button\/index.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/mail\/*save-as-pdf-jspdf*",
                "*:\/\/mail.google.com\/mail\/*save-as-pdf-print*"
            ],
            "run_at": "document_start",
            "js": [
                "\/prefs.js",
                "\/data\/view\/index.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/button\/icon-blue.svg",
                "\/data\/button\/icon-orange.svg",
                "\/data\/print\/index.html",
                "\/data\/assets\/*.ttf",
                "\/data\/view\/inject.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/to-pdf.html",
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "action": []
}