ChatGPT Context Menu

Send selected text to ChatGPT

ChatGPT Context Menu क्या है?

ChatGPT Context Menu Tauric द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send selected text to ChatGPT"।

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

screenshot
screenshot

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

crx प्रारूप में ChatGPT Context Menu एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Are you frequently using ChatGPT to request suggestions like "Come up with blog posts based on " or seeking explanations with "Explain "? If so, this extension is perfect for you! Set your own custom prompts and simply highlight the text you need, right-click, and select "Ask ChatGPT" — it's that easy!

This extension adds a context menu (right-click) option to 'Ask ChatGPT' which sends your selected text to a ChatGPT chat window, formatting the prompt based on user-configurable options.

To use the GPT 4 model, enter a ChatID for a GPT4 chat in the extension options. This also ensures that the same chat is used every time, making the extension more reliable as it helps avoid "one message at a time" errors. 

To get a ChatID, exchange a few messages with ChatGPT; you'll find the ID in the URL (e.g., chat.openai.com/chat/). 

Feedback is welcome, please feel free to leave a review with any suggestions or bug reports. Yes I am aware that this is terribly written :3

Planned additions in order of how much I can be bothered to add them (most to least):
- Multiple Context menu options
- Option to change inner text of context menu button
- Toggle to open a ChatGPT iFrame that persists in the background, instead of a New Tab
- Plugin functionality (I'm waiting for beta access)                    

एक्सटेंशन की मूल जानकारी

नाम ChatGPT Context Menu ChatGPT Context Menu
ID dgoglcakombnlehdkdoekncmcganjjid
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-context-menu/dgoglcakombnlehdkdoekncmcganjjid
विवरण Send selected text to ChatGPT
फ़ाइल का आकार 40.94 KB
स्थापना संख्या 172
वर्तमान संस्करण 1.2
अंतिम अपडेट 2023-05-26
प्रकाशन तिथि 2023-04-02
रेटिंग 1.00/5 कुल 2 रेटिंग्स
डेवलपर Tauric
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Context Menu",
    "version": "1.2",
    "description": "Send selected text to ChatGPT",
    "permissions": [
        "contextMenus",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "128": "logo128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "128": "logo128.png",
        "48": "logo48.png",
        "16": "logo16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}