Ask from ChatGPT™

Select a text and send it to ChatGPT to translate or explain more!

Ask from ChatGPT™ क्या है?

Ask from ChatGPT™ lunu.bounir द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select a text and send it to ChatGPT to translate or explain more!"।

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

screenshot

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

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

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

                        This extension sends the selected text to ChatGPT with a prefixed message of your preference.

You can use it to translate a text, explain the meaning of the selected text or even reword it.

Operation Mode:
1. Window Mode: The new instance of ChatGPT is opened in a popup window
2. Tab Mode: The new instance of ChatGPT is opened next to the current tab

Use the right-click context menu over the action button to change the mode.

Hints:
1. You can press the action button to open ChatGPT next to the current tab.

--Legal
This extension only opens the official ChatGPT and sends the selected text to it to increase your productivity. It has nothing to do with the ChatGPT team.                    

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

नाम Ask from ChatGPT™ Ask from ChatGPT™
ID gaohihkdpnadnljkihehfmkjgaojpfcb
आधिकारिक URL https://chromewebstore.google.com/detail/ask-from-chatgpt/gaohihkdpnadnljkihehfmkjgaojpfcb
विवरण Select a text and send it to ChatGPT to translate or explain more!
फ़ाइल का आकार 112 KB
स्थापना संख्या 80
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2023-04-19
प्रकाशन तिथि 2023-02-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर lunu.bounir
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/ask-from-chatgpt.html
सहायता पृष्ठ URL https://webextension.org/listing/ask-from-chatgpt.html
गोपनीयता नीति पृष्ठ URL https://add0n.com/policies/lunu.bounir.txt
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ask from ChatGPT\u2122",
    "description": "Select a text and send it to ChatGPT to translate or explain more!",
    "version": "0.1.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "contextMenus",
        "offscreen"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/ask-from-chatgpt.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_title": "Open ChatGPT next to the current tab"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "commands": {
        "_execute_action": []
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "world": "MAIN",
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "data\/inject\/main.js"
            ]
        },
        {
            "run_at": "document_start",
            "world": "ISOLATED",
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "data\/inject\/isolated.js"
            ]
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html"
    }
}