Gmail Multi-Print

Print Multiple Emails at once from the Inbox screen.

什么是Gmail Multi-Print?

Gmail Multi-Print是由AY开发的Chrome扩展程序,该扩展的主要功能是“Print Multiple Emails at once from the Inbox screen.”。

扩展截图

screenshot

下载Gmail Multi-Print扩展crx文件

下载Gmail Multi-Print扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Gmail Multi-Print Gmail Multi-Print
ID ddfbnojnpdfacjnjnainjchpfnmekflo
官方URL https://chrome.google.com/webstore/detail/gmail-multi-print/ddfbnojnpdfacjnjnainjchpfnmekflo
简介 Print Multiple Emails at once from the Inbox screen.
文件大小 478 KB
安装次数 16,784
当前版本 2.0
更新时间 2018-10-31
上架时间 2018-10-31
评分 2.08/5 共36次评分
开发者 AY
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://sites.google.com/view/gmp-privacy-policy/home
支持的语言 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\/"
        ]
    }
}