Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
O que é Message Counter for Gmail™?
Message Counter for Gmail™ é uma extensão do Chrome desenvolvida por Jacob "kurtextrem" Groß, e sua principal característica é "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Message Counter for Gmail™
Baixe arquivos de extensão Message Counter for Gmail™ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
URL Oficial | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Descrição | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Tamanho do Arquivo | 7.09 KB |
Contagem de Instalações | 201 |
Versão Atual | 1.3.4 |
Última Atualização | 2023-12-03 |
Data de Publicação | 2018-05-17 |
Desenvolvedor | Jacob "kurtextrem" Groß |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kurtextrem/Gmail-Mail-Counter |
URL da Página de Ajuda | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL da Página de Política de Privacidade | https://www.kurtextrem.de/chrome/PRIVACY.html |
Idiomas Suportados | 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\/*" ] } |