Gmail Conversation Thread Reversal

Gmail Conversation Thread Reversal - show the latest email first

Что такое Gmail Conversation Thread Reversal?

Gmail Conversation Thread Reversal - это расширение Chrome, разработанное vanitamundhra, и его основная функция - "Gmail Conversation Thread Reversal - show the latest email first".

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

screenshot

Скачать файл CRX расширения Gmail Conversation Thread Reversal

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

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

                        The Gmail Email Thread Reverse is a Chrome Extension that reverses the order of your Gmail threads so that the most recent messages appear at the top of the threads or page. In other words, it alters the sequence of Gmail email threads from chronological to reverse chronological order.

How can I install the Gmail Email Thread Reverse?
To install the Gmail Email Thread Reverse, you can visit its Chrome Web Store page and click the "Add to Chrome" button. Once you have completed this step, the installation process is complete.                    

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

Название Gmail Conversation Thread Reversal Gmail Conversation Thread Reversal
ID dcndepobapcpcoglblfbmcbfijmkieeo
Официальный URL https://chromewebstore.google.com/detail/gmail-conversation-thread/dcndepobapcpcoglblfbmcbfijmkieeo
Описание Gmail Conversation Thread Reversal - show the latest email first
Размер файла 12.47 KB
Количество установок 2,771
Текущая Версия 1.1
Последнее Обновление 2023-03-30
Дата публикации 2023-03-26
Рейтинг 1.67/5 Всего 3 оценок
Разработчик vanitamundhra
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи http://shorelineanimation.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail Conversation Thread Reversal",
    "description": "Gmail Conversation Thread Reversal - show the latest email first",
    "version": "1.1",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "action": {
        "default_icon": "email-reverse-thread.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/0\/"
            ]
        }
    ]
}