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
官方網址 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\/"
        ]
    }
}