Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Was ist Message Counter for Gmail™?
Message Counter for Gmail™ ist eine Chrome-Erweiterung, die von Jacob "kurtextrem" Groß entwickelt wurde, und ihr Hauptmerkmal ist "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Erweiterungsscreenshots
Message Counter for Gmail™-Erweiterungs-CRX-Datei herunterladen
Laden Sie Message Counter for Gmail™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
Offizielle URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Beschreibung | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Dateigröße | 7.09 KB |
Installationsanzahl | 201 |
Aktuelle Version | 1.3.4 |
Letztes Update | 2023-12-03 |
Veröffentlichungsdatum | 2018-05-17 |
Entwickler | Jacob "kurtextrem" Groß |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kurtextrem/Gmail-Mail-Counter |
Hilfeseite URL | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL der Datenschutzrichtlinien-Seite | https://www.kurtextrem.de/chrome/PRIVACY.html |
Unterstützte Sprachen | 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\/*" ] } |