Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Co to jest Message Counter for Gmail™?
Message Counter for Gmail™ to rozszerzenie Chrome opracowane przez Jacob "kurtextrem" Groß, a jego główną funkcją jest „Shows the mail count of the conversation next to the scrollbar in Gmail™.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Message Counter for Gmail™
Pobierz pliki rozszerzeń Message Counter for Gmail™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Message Counter for Gmail™ |
ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
Oficjalny URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
Opis | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
Rozmiar pliku | 7.09 KB |
Liczba instalacji | 201 |
Aktualna Wersja | 1.3.4 |
Ostatnia Aktualizacja | 2023-12-03 |
Data Publikacji | 2018-05-17 |
Deweloper | Jacob "kurtextrem" Groß |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/kurtextrem/Gmail-Mail-Counter |
Adres URL Strony Pomocy | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
Adres URL Strony Polityki Prywatności | https://www.kurtextrem.de/chrome/PRIVACY.html |
Obsługiwane Języki | 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\/*" ] } |