Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Cos'è Message Counter for Gmail™?
Message Counter for Gmail™ è un'estensione di Chrome sviluppata da Jacob "kurtextrem" Groß, e la sua funzione principale è "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Message Counter for Gmail™
Scarica i file di estensione Message Counter for Gmail™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
URL Ufficiale | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Descrizione | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Dimensione del File | 7.09 KB |
Conteggio Installazioni | 201 |
Versione Corrente | 1.3.4 |
Ultimo Aggiornamento | 2023-12-03 |
Data di Pubblicazione | 2018-05-17 |
Sviluppatore | Jacob "kurtextrem" Groß |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kurtextrem/Gmail-Mail-Counter |
URL della Pagina di Aiuto | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL della Pagina della Politica sulla Privacy | https://www.kurtextrem.de/chrome/PRIVACY.html |
Lingue Supportate | 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\/*" ] } |