Gmail++

Improves the user experience of Gmail

什麼是Gmail++?

Gmail++是由Michael Pfaff開發的Chrome擴展程式,該擴展的主要功能是“Improves the user experience of Gmail”。

擴展截圖

screenshot

下載Gmail++擴展crx文件

下載Gmail++擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Improves the user experience of Gmail.

Features:
- Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts.
- Checks external POP3 accounts on page load.
- Checks external POP3 accounts at a configurable interval.                    

擴展基本資訊

名稱 Gmail++ Gmail++
ID jcbfnofllipbepnolhgcdloichjbcena
官方網址 https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena
簡介 Improves the user experience of Gmail
檔案大小 9.16 KB
安裝次數 182
目前版本 1.1.0
更新時間 2022-10-12
上架時間 2022-10-09
開發者 Michael Pfaff
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail++",
    "version": "1.1.0",
    "description": "Improves the user experience of Gmail",
    "icons": {
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}