ChatGPT Chat Extractor
A basic chat text Extractor
Co je ChatGPT Chat Extractor?
ChatGPT Chat Extractor je rozšíření Chrome vyvinuté Invictus, a jeho hlavní funkcí je „A basic chat text Extractor“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChatGPT Chat Extractor
Stáhněte si soubory rozšíření ChatGPT Chat Extractor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ppkdabpmgbglpnghdbmnemflamdfgdkj |
Oficiální URL | https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj |
Popis | A basic chat text Extractor |
Velikost souboru | 27.39 KB |
Počet instalací | 31 |
Aktuální Verze | 0.0.20 |
Poslední Aktualizace | 2023-02-07 |
Datum Vydání | 2023-02-06 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Invictus |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://www.buymeacoffee.com/invic1us |
Podporované Jazyky | 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 } |