Gmail Unread Count Badge

Unread count badge for the Gmail icon

什麼是Gmail Unread Count Badge?

Gmail Unread Count Badge是由developit開發的Chrome擴展程式,該擴展的主要功能是“Unread count badge for the Gmail icon”。

擴展截圖

screenshot

下載Gmail Unread Count Badge擴展crx文件

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

擴展使用說明

                        Show your Gmail unread count as a badge on the Gmail icon!

Setup
–––––
1. Install the extension.
2. Add Gmail as an app:
    👉  ⠇ Menu → More Tools → Create Shortcut...
    ℹ️  Make sure to select "open as window"
    🛟  Guide: https://support.google.com/chrome_webstore/answer/3060053
3. Open the newly installed app.

How it Works
–––––––––––
This is an optimized fork of the "Gmail app badge notification" extension that uses no CPU or bandwidth.

Instead of polling your Gmail inbox RSS feed, this version of the extension injects a tiny script into Gmail. Gmail already shows unread count in its window title. This extension detects when Gmail updates its title, then grabs the unread count and shows it as a badge on Gmail's icon. It's fast, reliable, and efficient!                    

擴展基本資訊

名稱 Gmail Unread Count Badge Gmail Unread Count Badge
ID cfhddlpoigblmghpepaoeikplefbcefk
官方網址 https://chromewebstore.google.com/detail/gmail-unread-count-badge/cfhddlpoigblmghpepaoeikplefbcefk
簡介 Unread count badge for the Gmail icon
檔案大小 11.43 KB
安裝次數 138
目前版本 2.0.1
更新時間 2022-06-07
上架時間 2022-06-03
評分 2.00/5 共 1 次評分
開發者 developit
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/developit/gmail-unread-count-badge
說明頁面URL https://github.com/developit/gmail-unread-count-badge/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Unread Count Badge",
    "version": "2.0.1",
    "manifest_version": 3,
    "description": "Unread count badge for the Gmail icon",
    "homepage_url": "https:\/\/github.com\/developit\/gmail-app-badge-notification",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.mail.google.com\/mail\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mail.google.com\/mail\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}