Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Apa itu Message Counter for Gmail™?
Message Counter for Gmail™ adalah ekstensi Chrome yang dikembangkan oleh Jacob "kurtextrem" Groß, dan fitur utamanya adalah "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Message Counter for Gmail™
Unduh file ekstensi Message Counter for Gmail™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
URL Resmi | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Deskripsi | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Ukuran File | 7.09 KB |
Jumlah Instalasi | 201 |
Versi Saat Ini | 1.3.4 |
Terakhir Diperbarui | 2023-12-03 |
Tanggal Publikasi | 2018-05-17 |
Pengembang | Jacob "kurtextrem" Groß |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/kurtextrem/Gmail-Mail-Counter |
URL Halaman Bantuan | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL Halaman Kebijakan Privasi | https://www.kurtextrem.de/chrome/PRIVACY.html |
Bahasa yang Didukung | 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\/*" ] } |