ChatGPT for Gmail

Display ChatGPT response as a suggestion to complete emails

ChatGPT for Gmail란 무엇입니까?

ChatGPT for Gmail은(는) ChatGPT Extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display ChatGPT response as a suggestion to complete emails"입니다.

확장 프로그램 스크린샷

screenshot

ChatGPT for Gmail 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A Free Open source browser extension for Gmail that completes emails for you using ChatGPT.  You can write just the main context of the email and let ChatGPT add manners and conjunctions for you.

Features:
- Completes emails for you by a given context
- Completes the subject of the email
- Fixes any typos you might have
- Accessible button to let ChatGPT complete the email
- Can be turned on or off at any time
- Support ChatGPT API key

Usage:
1. Open Gmail
2. Create new email and start writing it
3. In the left side of your input text, ChatGPT for Gmail icon will appear
4. Click it and a suggestion of Chat GPT to complete your email will show on screen
5. If you chose to accept it, just click on it

source code: https://github.com/dtkdt100/Chat-GPT-for-Gmail
credit: https://github.com/wong2/chat-gpt-google-extension                    

확장 프로그램 기본 정보

이름 ChatGPT for Gmail ChatGPT for Gmail
ID nfhkknadfkkoodpcaecgpkdnbjkjhebf
공식 URL https://chromewebstore.google.com/detail/chatgpt-for-gmail/nfhkknadfkkoodpcaecgpkdnbjkjhebf
설명 Display ChatGPT response as a suggestion to complete emails
파일 크기 175 KB
설치 횟수 20,000
현재 버전 1.1.1
최근 업데이트 2024-01-05
출시 날짜 2022-12-27
평점 2.87/5 총 31 개의 평점
개발자 ChatGPT Extensions
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dtkdt100/Chat-GPT-for-Gmail
도움말 페이지 URL https://github.com/dtkdt100/Chat-GPT-for-Gmail
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT for Gmail",
    "description": "Display ChatGPT response as a suggestion to complete emails",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/mail.google.com\/*",
        "https:\/\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "css": [
                "content-script.css"
            ],
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}