Gmail Pop Out Reply Default

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

Vad är Gmail Pop Out Reply Default?

Gmail Pop Out Reply Default är en Chrome-tillägg utvecklad av etnik29, och dess huvudfunktion är "Automatically opens the Pop Out Reply when clicking Reply, that's it.".

Tilläggsskärmbilder

screenshot

Ladda ner Gmail Pop Out Reply Default-förlängningens CRX-fil

Ladda ner Gmail Pop Out Reply Default-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        In Gmail:

Opens the Pop Out Reply when clicking Reply.


No information is collected.                    

Grundläggande Information om Tillägg

Namn Gmail Pop Out Reply Default Gmail Pop Out Reply Default
ID ogngkhlopjdkmfldjnhdinibcaffdnik
Officiell webbadress https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik
Beskrivning Automatically opens the Pop Out Reply when clicking Reply, that's it.
Filstorlek 76.83 KB
Antal Installationer 94
Aktuell Version 2.0.0
Senast Uppdaterad 2023-06-18
Publiceringsdatum 2023-06-18
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare etnik29
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}