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
官方網址 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"
    }
}