Gmail Analytics

See sender stats in gmail

什麼是Gmail Analytics?

Gmail Analytics是由ubershmekel開發的Chrome擴展程式,該擴展的主要功能是“See sender stats in gmail”。

擴展截圖

screenshot

下載Gmail Analytics擴展crx文件

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

擴展使用說明

                        The idea is a Chrome extension that would show you stats about your gmail inbox.

Right now you can see who is sending you the most email, and click to filter them. The most frequent sender is shown at the top of your inbox, to the right of the search bar. Note that this is only taking into account the current page, not the complete inbox. If this extension gets more popular, I might find time to build more features into it.

If you'd like to see the code, or file feature requests - please do so at https://github.com/ubershmekel/gmail-analytics                    

擴展基本資訊

名稱 Gmail Analytics Gmail Analytics
ID gjmmjmdhmddfmnddddkhlcnbjkjkdlal
官方網址 https://chromewebstore.google.com/detail/gmail-analytics/gjmmjmdhmddfmnddddkhlcnbjkjkdlal
簡介 See sender stats in gmail
檔案大小 256 KB
安裝次數 891
目前版本 0.1.0
更新時間 2023-08-21
上架時間 2022-12-11
評分 4.00/5 共 1 次評分
開發者 ubershmekel
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ubershmekel/gmail-analytics
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail Analytics",
    "version": "0.1.0",
    "description": "See sender stats in gmail",
    "short_name": "gmailanalytics",
    "author": "Yuval Greenfield ",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/extensionInjector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/gmailJsLoader.js",
                "js\/extension.js",
                "js\/gmailJsLoader.js.map",
                "js\/extension.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}