Gmail Composer AI

Write emails with ChatGPT on Gmail

什麼是Gmail Composer AI?

Gmail Composer AI是由juanmadurand開發的Chrome擴展程式,該擴展的主要功能是“Write emails with ChatGPT on Gmail”。

擴展截圖

screenshot
screenshot

下載Gmail Composer AI擴展crx文件

下載Gmail Composer AI擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Introducing Gmail Composer AI, the ultimate productivity tool for Gmail users! With this powerful Chrome extension, writing emails has never been easier. Harnessing the incredible capabilities of ChatGPT, Gmail Composer AI takes your email composition experience to a whole new level.

Gmail Composer AI empowers you to effortlessly craft well-written and engaging emails in a fraction of the time. Whether you're a busy professional, a student, or anyone who frequently uses Gmail, this extension will revolutionize your email workflow.                    

擴展基本資訊

名稱 Gmail Composer AI Gmail Composer AI
ID admmpgllajcpkahmgeaaghkopeoalmbi
官方網址 https://chrome.google.com/webstore/detail/gmail-composer-ai/admmpgllajcpkahmgeaaghkopeoalmbi
簡介 Write emails with ChatGPT on Gmail
檔案大小 151 KB
安裝次數 137
目前版本 1.17.1
更新時間 2023-06-06
上架時間 2023-06-06
開發者 juanmadurand
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/juanmadurand/gmail-composer-ai
支援的語言 de,en,fr,es,hu,pt-PT,ro,ru,uk,iw,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.17.1",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "libs.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}