Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

Что такое Auto Expander for Gmail™?

Auto Expander for Gmail™ - это расширение Chrome, разработанное Jacob "kurtextrem" Groß, и его основная функция - "Automatically expands too long mails in Gmail™.".

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

screenshot
screenshot
screenshot

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

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

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

                        Do you often receive too long mails and you're tired of scrolling to the bottom to open the full mail?
"[Message clipped] View entire message" is your foe?

Look no further! This extension automatically expands the mails in Gmail™ for you (also works in the new re-designed Gmail!).


Update: v1.5.0.3 - fixed various issues (not expanding properly etc)


Permissions:
Rights to read from Gmail in order to expand the mail. No data collected.

Code is open source: https://github.com/kurtextrem/Gmail-Auto-Expander


Icon by Boyan Kostov.                    

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

Название Auto Expander for Gmail™ Auto Expander for Gmail™
ID ilkidmijegomodfeplfdekbfglhaahba
Официальный URL https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba
Описание Automatically expands too long mails in Gmail™.
Размер файла 10.39 KB
Количество установок 523
Текущая Версия 1.5.0.5
Последнее Обновление 2023-12-03
Дата публикации 2019-05-25
Рейтинг 2.67/5 Всего 9 оценок
Разработчик Jacob "kurtextrem" Groß
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kurtextrem/Gmail-Auto-Expander
URL страницы помощи https://github.com/kurtextrem/Gmail-Auto-Expander/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.5.0.5",
    "manifest_version": 3,
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon-128.png",
        "16": "icon-128.png",
        "48": "icon-128.png"
    },
    "author": "Jacob \u201ekurtextrem\" Gro\u00df",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "minimum_chrome_version": "88",
    "host_permissions": [
        "*:\/\/mail.google.com\/*"
    ]
}