chatGPT screenshot

Take a nice screenshot of the whole chat GPT conversation

chatGPT screenshot क्या है?

chatGPT screenshot marc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take a nice screenshot of the whole chat GPT conversation"।

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

screenshot

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

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

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

                        OpenAI published its newest chatGPT AI (at chat.openai.com) where you can chat with an advanced AI. There is however no export functionality, so people take manual screenshots that do not include the whole conversation (they have to make several screenshots add merge them in an image editing tool).

This extension provided an export button that styles the content of chatGPT in a way that looks nice and makes a screenshot of the whole conversation. An image (png file) is then automatically downloaded, ready to be shared easily.                    

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

नाम chatGPT screenshot chatGPT screenshot
ID nobfenidifcdghhkifkcnlhmnlfnmhek
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-screenshot/nobfenidifcdghhkifkcnlhmnlfnmhek
विवरण Take a nice screenshot of the whole chat GPT conversation
फ़ाइल का आकार 5.94 KB
स्थापना संख्या 3,587
वर्तमान संस्करण 0.2
अंतिम अपडेट 2023-04-15
प्रकाशन तिथि 2022-12-05
रेटिंग 3.44/5 कुल 9 रेटिंग्स
डेवलपर marc
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/marcj/chrome-chatgpt-screenshot-extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "chatGPT screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.2",
    "description": "Take a nice screenshot of the whole chat GPT conversation",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}