Gmail Pop Out Reply Default

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

Co to jest Gmail Pop Out Reply Default?

Gmail Pop Out Reply Default to rozszerzenie Chrome opracowane przez etnik29, a jego główną funkcją jest „Automatically opens the Pop Out Reply when clicking Reply, that's it.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail Pop Out Reply Default

Pobierz pliki rozszerzeń Gmail Pop Out Reply Default 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

                        In Gmail:

Opens the Pop Out Reply when clicking Reply.


No information is collected.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail Pop Out Reply Default Gmail Pop Out Reply Default
ID ogngkhlopjdkmfldjnhdinibcaffdnik
Oficjalny URL https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik
Opis Automatically opens the Pop Out Reply when clicking Reply, that's it.
Rozmiar pliku 76.83 KB
Liczba instalacji 94
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2023-06-18
Data Publikacji 2023-06-18
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper etnik29
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}