Gmail Multi-Print

Print Multiple Emails at once from the Inbox screen.

Gmail Multi-Print là gì?

Gmail Multi-Print là một tiện ích mở rộng Chrome được phát triển bởi AY, và tính năng chính của nó là "Print Multiple Emails at once from the Inbox screen.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail Multi-Print

Tải xuống các tệp mở rộng Gmail Multi-Print dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Select multiple emails from your Gmail Inbox and print them at once. With this, there is no longer a need to open each email and then select the print all button.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail Multi-Print Gmail Multi-Print
ID ddfbnojnpdfacjnjnainjchpfnmekflo
URL Chính Thức https://chrome.google.com/webstore/detail/gmail-multi-print/ddfbnojnpdfacjnjnainjchpfnmekflo
Mô tả Print Multiple Emails at once from the Inbox screen.
Kích Thước Tệp 478 KB
Số Lần Cài Đặt 16,784
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-10-31
Ngày Phát Hành 2018-10-31
Đánh Giá 2.08/5 Tổng số 36 Đánh Giá
Nhà Phát Triển AY
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/gmp-privacy-policy/home
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Multi-Print",
    "description": "Print Multiple Emails at once from the Inbox screen.",
    "icons": {
        "128": "icons\/print-128x128.png",
        "48": "icons\/print-48x48.png",
        "16": "icons\/print-16x16.png"
    },
    "version": "2.0",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "background": {
        "scripts": [
            "\/background\/base64.js",
            "\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "\/libs\/inboxsdk.js",
                "\/contentScript\/Multi-Print.js",
                "\/libs\/alertify\/alertify.min.js"
            ],
            "css": [
                "\/libs\/alertify\/alertify.default.css",
                "\/libs\/alertify\/alertify.core.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "\/icons\/print.png",
        "*"
    ],
    "permissions": [
        "tabs",
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "oauth2": {
        "client_id": "504451976354-0d3mvjed670f44luk3ol6h0p0r8r8o38.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/mail.google.com\/"
        ]
    }
}