Gmail Unread Count Badge

Unread count badge for the Gmail icon

Gmail Unread Count Badge क्या है?

Gmail Unread Count Badge developit द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unread count badge for the Gmail icon"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail Unread Count Badge एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}