ScrAIbe

A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT

什么是ScrAIbe?

ScrAIbe是由gastonmaffei开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT”。

扩展截图

screenshot

下载ScrAIbe扩展crx文件

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

扩展使用说明

                        ScrAIbe is a Chrome extension that helps users write better emails using the power of GPT-3. With ScrAIbe, you can generate a response to an email based on the previous conversation and your instructions, allowing you to write emails faster and more efficiently. Simply click on the 'Use ChatGPT' button in your Gmail compose window to generate a response, and ScrAIbe will do the rest. Try ScrAIbe today and start writing smarter emails with AI.                    

扩展基本信息

名称 ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
官方URL https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
简介 A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
文件大小 23.1 KB
安装次数 136
当前版本 0.0.1
更新时间 2022-12-08
上架时间 2022-12-07
评分 3.00/5 共2次评分
开发者 gastonmaffei
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Popeyef5/ScrAIbe
帮助页面URL https://github.com/Popeyef5/ScrAIbe
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ScrAIbe",
    "description": "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT",
    "version": "0.0.1",
    "permissions": [
        "storage",
        "https:\/\/api.openai.com\/v1\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_title": "ScrAIbe - OpenAI API Key",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}