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 |
官方網址 | 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 } |