ChatGPT Chat Extractor
A basic chat text Extractor
ChatGPT Chat Extractor क्या है?
ChatGPT Chat Extractor Invictus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A basic chat text Extractor"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Chat Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time. This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ppkdabpmgbglpnghdbmnemflamdfgdkj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj |
विवरण | A basic chat text Extractor |
फ़ाइल का आकार | 27.39 KB |
स्थापना संख्या | 31 |
वर्तमान संस्करण | 0.0.20 |
अंतिम अपडेट | 2023-02-07 |
प्रकाशन तिथि | 2023-02-06 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Invictus |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://www.buymeacoffee.com/invic1us |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Chat Extractor", "description": "A basic chat text Extractor", "version": "0.0.20", "action": [], "web_accessible_resources": [ { "resources": [ "images\/icon32.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "permissions": [ "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 3 } |