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
官方URL 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\/*"
    ]
}