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™ هو إضافة Chrome تم تطويرها بواسطة Jacob "kurtextrem" Groß، والميزة الرئيسية لها هي "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Message Counter for Gmail™
قم بتنزيل ملفات الامتداد Message Counter for Gmail™ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
عنوان صفحة سياسة الخصوصية | 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\/*" ] } |