Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Hvad er Message Counter for Gmail™?
Message Counter for Gmail™ er en Chrome-udvidelse udviklet af Jacob "kurtextrem" Groß, og dens hovedfunktion er "Shows the mail count of the conversation next to the scrollbar in Gmail™.".
Udvidelsesskærmbilleder
Download Message Counter for Gmail™-udvidelses-CRX-fil
Download Message Counter for Gmail™-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
Officiel URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Beskrivelse | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Filstørrelse | 7.09 KB |
Antal Installationer | 201 |
Nuværende Version | 1.3.4 |
Senest Opdateret | 2023-12-03 |
Udgivelsesdato | 2018-05-17 |
Udvikler | Jacob "kurtextrem" Groß |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/kurtextrem/Gmail-Mail-Counter |
Hjælpeside-URL | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
URL til Fortrolighedspolitik Side | https://www.kurtextrem.de/chrome/PRIVACY.html |
Understøttede Sprog | 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\/*" ] } |