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是由etnik29開發的Chrome擴展程式,該擴展的主要功能是“Automatically opens the Pop Out Reply when clicking Reply, that's it.”。

擴展截圖

screenshot

下載Gmail Pop Out Reply Default擴展crx文件

下載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
官方網址 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\/*"
    ]
}