ReGPT

This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way

什么是ReGPT?

ReGPT是由knafle开发的Chrome扩展程序,该扩展的主要功能是“This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way”。

扩展截图

screenshot
screenshot
screenshot

下载ReGPT扩展crx文件

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

扩展使用说明

                        This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way                    

扩展基本信息

名称 ReGPT ReGPT
ID ndamopilbmdgefbclfmdppakjifdekco
官方URL https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco
简介 This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
文件大小 21.28 KB
安装次数 449
当前版本 1.0
更新时间 2023-05-12
上架时间 2023-05-12
开发者 knafle
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReGPT",
    "version": "1.0",
    "description": "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way",
    "options_page": "options.html",
    "action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}