Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Wat is Message Counter for Gmail™?
Message Counter for Gmail™ is een Chrome-extensie ontwikkeld door Jacob "kurtextrem" Groß, en de belangrijkste functie is "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Extensie Screenshots
Download het CRX-bestand van de extensie Message Counter for Gmail™
Download Message Counter for Gmail™-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
Officiële URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Beschrijving | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Bestandsgrootte | 7.09 KB |
Aantal Installaties | 201 |
Huidige Versie | 1.3.4 |
Laatst Bijgewerkt | 2023-12-03 |
Publicatiedatum | 2018-05-17 |
Ontwikkelaar | Jacob "kurtextrem" Groß |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/kurtextrem/Gmail-Mail-Counter |
Help Pagina-URL | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL van de Privacybeleid Pagina | https://www.kurtextrem.de/chrome/PRIVACY.html |
Ondersteunde Talen | 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\/*" ] } |