Gmail Pop Out Reply Default

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

Hvad er Gmail Pop Out Reply Default?

Gmail Pop Out Reply Default er en Chrome-udvidelse udviklet af etnik29, og dens hovedfunktion er "Automatically opens the Pop Out Reply when clicking Reply, that's it.".

Udvidelsesskærmbilleder

screenshot

Download Gmail Pop Out Reply Default-udvidelses-CRX-fil

Download Gmail Pop Out Reply Default-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        In Gmail:

Opens the Pop Out Reply when clicking Reply.


No information is collected.                    

Grundlæggende oplysninger om udvidelsen

Navn Gmail Pop Out Reply Default Gmail Pop Out Reply Default
ID ogngkhlopjdkmfldjnhdinibcaffdnik
Officiel URL https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik
Beskrivelse Automatically opens the Pop Out Reply when clicking Reply, that's it.
Filstørrelse 76.83 KB
Antal Installationer 94
Nuværende Version 2.0.0
Senest Opdateret 2023-06-18
Udgivelsesdato 2023-06-18
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler etnik29
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
    ]
}