ChatGPT Screenshot

Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage

ChatGPT Screenshot क्या है?

ChatGPT Screenshot kuya5220 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage"।

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

screenshot

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

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

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

                        想要保存與ChatGPT的對話,卻覺得一張一張手動截圖太麻煩嗎?使用這個插件,即可透過一次點擊獲取完整的對話紀錄!

Wanna save the conversation content with ChatGPT but too lazy to screenshot one by one? Get this extension to screenshot the complete conversation by one click!                    

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

नाम ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
विवरण Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
फ़ाइल का आकार 90.18 KB
स्थापना संख्या 549
वर्तमान संस्करण 0.0.5
अंतिम अपडेट 2023-01-03
प्रकाशन तिथि 2022-12-31
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर kuya5220
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/stu00608/ChatGPT-Screenshot
सहायता पृष्ठ URL https://github.com/stu00608/ChatGPT-Screenshot
समर्थित भाषाएँ zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.0.5",
    "description": "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "html2canvas.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}