Gmail Pop Out Reply Default

Automatically opens the Pop Out Reply when clicking Reply, that's it.

Что такое Gmail Pop Out Reply Default?

Gmail Pop Out Reply Default - это расширение Chrome, разработанное etnik29, и его основная функция - "Automatically opens the Pop Out Reply when clicking Reply, that's it.".

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

screenshot

Скачать файл CRX расширения Gmail Pop Out Reply Default

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

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

                        In Gmail:

Opens the Pop Out Reply when clicking Reply.


No information is collected.                    

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

Название Gmail Pop Out Reply Default Gmail Pop Out Reply Default
ID ogngkhlopjdkmfldjnhdinibcaffdnik
Официальный URL https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik
Описание Automatically opens the Pop Out Reply when clicking Reply, that's it.
Размер файла 76.83 KB
Количество установок 94
Текущая Версия 2.0.0
Последнее Обновление 2023-06-18
Дата публикации 2023-06-18
Рейтинг 3.00/5 Всего 2 оценок
Разработчик etnik29
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail Pop Out Reply Default",
    "description": "Automatically opens the Pop Out Reply when clicking Reply, that's it.",
    "version": "2.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icons.png",
            "48": "icons\/icons.png",
            "128": "icons\/icons.png"
        },
        "default_title": "Gmail Pop Out Reply Default"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icons.png",
        "48": "icons\/icons.png",
        "128": "icons\/icons.png"
    },
    "host_permissions": [
        "https:\/\/mail.google.com\/*"
    ]
}