Message Counter for Gmail™

Shows the mail count of the conversation next to the scrollbar in Gmail™.

Что такое Message Counter for Gmail™?

Message Counter for Gmail™ - это расширение Chrome, разработанное Jacob "kurtextrem" Groß, и его основная функция - "Shows the mail count of the conversation next to the scrollbar in Gmail™.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Message Counter for Gmail™

Скачайте файлы расширений Message Counter for Gmail™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Message Counter for Gmail™ Message Counter for Gmail™
ID cmdjfmokkblaapkclnhnefeokpkmkkkl
Официальный URL https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl
Описание Shows the mail count of the conversation next to the scrollbar in Gmail™.
Размер файла 7.09 KB
Количество установок 201
Текущая Версия 1.3.4
Последнее Обновление 2023-12-03
Дата публикации 2018-05-17
Разработчик Jacob "kurtextrem" Groß
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kurtextrem/Gmail-Mail-Counter
URL страницы помощи https://github.com/kurtextrem/Gmail-Mail-Counter/issues
URL страницы политики конфиденциальности https://www.kurtextrem.de/chrome/PRIVACY.html
Поддерживаемые языки 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\/*"
    ]
}