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
Eメール [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\/"
        ]
    }
}