Smarter Reply for Gmail

Create custom email responses for Gmail Smart Reply.

什么是Smarter Reply for Gmail?

Smarter Reply for Gmail是由Jonathan Shobrook开发的Chrome扩展程序,该扩展的主要功能是“Create custom email responses for Gmail Smart Reply.”。

扩展截图

screenshot
screenshot

下载Smarter Reply for Gmail扩展crx文件

下载Smarter Reply for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Gmail has a feature called "Smart Reply," where users can select from a list of recommended responses when replying to an email. But Gmail doesn't allow you to create your own smart replies. Smarter Reply for Gmail is a Chrome extension which does let you create custom replies, and will learn to suggest the right reply for a given email.                    

扩展基本信息

名称 Smarter Reply for Gmail Smarter Reply for Gmail
ID mnclffmabpkinejmfajagggbmehcilgi
官方URL https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi
简介 Create custom email responses for Gmail Smart Reply.
文件大小 1.42 MB
安装次数 178
当前版本 0.0.0.1
更新时间 2021-02-24
上架时间 2021-02-23
开发者 Jonathan Shobrook
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shobrook/smarterreply
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smarter Reply for Gmail",
    "description": "Create custom email responses for Gmail Smart Reply.",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "assets\/stopwords.json"
    ],
    "browser_action": {
        "default_title": "Smarter Reply for Gmail",
        "default_icon": "assets\/icon.png"
    },
    "background": {
        "scripts": [
            "extension\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*",
                "http:\/\/www.mail.google.com\/*",
                "https:\/\/www.mail.google.com\/*"
            ],
            "js": [
                "extension\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}