ChatGPT Chat Extractor
A basic chat text Extractor
ChatGPT Chat Extractorとは何ですか?
ChatGPT Chat ExtractorはInvictusによって開発されたChromeの拡張機能で、その主な機能は「A basic chat text Extractor」です。
拡張機能のスクリーンショット
ChatGPT Chat Extractor拡張機能のCRXファイルをダウンロード
ChatGPT Chat Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } |