Gmail Pop Out Reply Default

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

Was ist Gmail Pop Out Reply Default?

Gmail Pop Out Reply Default ist eine Chrome-Erweiterung, die von etnik29 entwickelt wurde, und ihr Hauptmerkmal ist "Automatically opens the Pop Out Reply when clicking Reply, that's it.".

Erweiterungsscreenshots

screenshot

Gmail Pop Out Reply Default-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail Pop Out Reply Default-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        In Gmail:

Opens the Pop Out Reply when clicking Reply.


No information is collected.                    

Grundlegende Informationen zur Erweiterung

Name Gmail Pop Out Reply Default Gmail Pop Out Reply Default
ID ogngkhlopjdkmfldjnhdinibcaffdnik
Offizielle URL https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik
Beschreibung Automatically opens the Pop Out Reply when clicking Reply, that's it.
Dateigröße 76.83 KB
Installationsanzahl 94
Aktuelle Version 2.0.0
Letztes Update 2023-06-18
Veröffentlichungsdatum 2023-06-18
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler etnik29
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}