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
Eメール [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"
    }
}