Gmail Unread Count Badge

Unread count badge for the Gmail icon

Gmail Unread Count Badge là gì?

Gmail Unread Count Badge là một tiện ích mở rộng Chrome được phát triển bởi developit, và tính năng chính của nó là "Unread count badge for the Gmail icon".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail Unread Count Badge

Tải xuống các tệp mở rộng Gmail Unread Count Badge dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail Unread Count Badge Gmail Unread Count Badge
ID cfhddlpoigblmghpepaoeikplefbcefk
URL Chính Thức https://chromewebstore.google.com/detail/gmail-unread-count-badge/cfhddlpoigblmghpepaoeikplefbcefk
Mô tả Unread count badge for the Gmail icon
Kích Thước Tệp 11.43 KB
Số Lần Cài Đặt 138
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2022-06-07
Ngày Phát Hành 2022-06-03
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển developit
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/developit/gmail-unread-count-badge
URL Trang Trợ Giúp https://github.com/developit/gmail-unread-count-badge/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}