Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Message Counter for Gmail™ क्या है?
Message Counter for Gmail™ Jacob "kurtextrem" Groß द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows the mail count of the conversation next to the scrollbar in Gmail™."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Message Counter for Gmail™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds the amount of mails of the currently viewed conversation next to the scrollbar in Gmail. This extension is open-source: https://github.com/kurtextrem/Gmail-Mail-Counter Icon by Abhishek Pipalva.
एक्सटेंशन की मूल जानकारी
नाम | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
आधिकारिक URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
विवरण | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
फ़ाइल का आकार | 7.09 KB |
स्थापना संख्या | 201 |
वर्तमान संस्करण | 1.3.4 |
अंतिम अपडेट | 2023-12-03 |
प्रकाशन तिथि | 2018-05-17 |
डेवलपर | Jacob "kurtextrem" Groß |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kurtextrem/Gmail-Mail-Counter |
सहायता पृष्ठ URL | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
गोपनीयता नीति पृष्ठ URL | https://www.kurtextrem.de/chrome/PRIVACY.html |
समर्थित भाषाएँ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.3.4", "manifest_version": 3, "description": "__MSG_extDesc__", "default_locale": "en", "icons": { "128": "img\/icon-128.png", "16": "img\/icon-128.png", "48": "img\/icon-128.png" }, "author": "Jacob \u201ekurtextrem\" Gro\u00df", "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "contentscript.js" ], "css": [ "content.css" ], "run_at": "document_idle", "all_frames": false } ], "minimum_chrome_version": "88", "host_permissions": [ "*:\/\/mail.google.com\/*" ] } |