ChatGPT for Gmail

Display ChatGPT response as a suggestion to complete emails

ChatGPT for Gmail क्या है?

ChatGPT for Gmail ChatGPT Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display ChatGPT response as a suggestion to complete emails"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}