Badge Checker for Gmail™
Shows badge notification for unread emails (supports multi-account)
Badge Checker for Gmail™ क्या है?
Badge Checker for Gmail™ Yubi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows badge notification for unread emails (supports multi-account)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Badge Checker for Gmail™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Badge Checker for Gmail™ is an addon that helps you quickly get badge notifications for all unread emails in your Gmail inbox. This addon supports multi-account, in other words, if you are logged in to more than one Gmail account, all unread emails in all your accounts are summed up and shown in the badge icon. Moreover, the badge icon tooltip shows a detailed description (badge number break down). There is also an options page where you can adjust few settings including the total number of Gmail accounts that you have; time interval to check your Gmail account and your default Gmail account to open when clicking on the toolbar icon. Please note that this addon only shows unread emails for the "inbox" folder. Currently, it does not support labels. Important note: Badge Checker for Gmail™ does NOT belong or relate to Google Inc at all. It is an unofficial extension that is developed and maintained independently by its author. Gmail™ is a registered trademark of Google Inc. To report bugs, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/badge-checker-for-gmail.html).
एक्सटेंशन की मूल जानकारी
नाम | Badge Checker for Gmail™ |
ID | igojiicideojlopipibjmfnoccmjikbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/badge-checker-for-gmail/igojiicideojlopipibjmfnoccmjikbn |
विवरण | Shows badge notification for unread emails (supports multi-account) |
फ़ाइल का आकार | 29.82 KB |
स्थापना संख्या | 194 |
वर्तमान संस्करण | 0.1.5 |
अंतिम अपडेट | 2023-12-04 |
प्रकाशन तिथि | 2018-12-03 |
रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
डेवलपर | Yubi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://mybrowseraddon.com/badge-checker-for-gmail.html |
सहायता पृष्ठ URL | https://mybrowseraddon.com/badge-checker-for-gmail.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.5", "manifest_version": 3, "name": "Badge Checker for Gmail\u2122", "short_name": "badge-checker-for-gmail", "host_permissions": [ "*:\/\/*.mail.google.com\/*" ], "homepage_url": "https:\/\/mybrowseraddon.com\/badge-checker-for-gmail.html", "description": "Shows badge notification for unread emails (supports multi-account)", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "permissions": [ "alarms", "storage" ], "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "web_accessible_resources": [ { "matches": [ "*:\/\/*.mail.google.com\/*" ], "resources": [ "data\/content_script\/page_context\/*" ] } ], "action": { "default_title": "Badge Checker for Gmail", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": false, "run_at": "document_start", "matches": [ "*:\/\/*.mail.google.com\/*" ], "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |