Track Change GPT
Add track change function and text edit mode to ChatGPT
什么是Track Change GPT?
Track Change GPT是由eibun-hikaku.net开发的Chrome扩展程序,该扩展的主要功能是“Add track change function and text edit mode to ChatGPT”。
扩展截图
下载Track Change GPT扩展crx文件
下载Track Change GPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
"Track Change GPT" is an add-on program that provides track change display and text editing functionality on ChatGPT. It is designed to be simple and intuitive, allowing easy editing of text and tracking of changes. Key Features: 1. Toggle the track change functionality on/off with the Track Change button. 2. When the track change functionality is enabled, differences between the original text and the text generated by AI are displayed with color-coded highlighting. 3. Clicking on AI-modified portions opens a pop-up window where you can choose to apply or delete the changes. 4. A menu window is positioned at the top of the text area, offering options such as "Edit Mode" (for text editing), "Accept All" (to apply all changes), "Reject All" (to delete all changes), and "Undo" (to undo user-made changes). 5. In Edit Mode, you can freely edit the text, including removing portions added by AI or inputting new text. 6. Track Change GPT supports various languages from around the world. Update (January 26, 2024): Version 1.1.10 - Minor fixes in line with the specifications changes for ChatGPT
扩展基本信息
名称 | Track Change GPT |
ID | nlfnplboianokkgcajhgbmhnbibhladj |
官方URL | https://chromewebstore.google.com/detail/track-change-gpt/nlfnplboianokkgcajhgbmhnbibhladj |
简介 | Add track change function and text edit mode to ChatGPT |
文件大小 | 42.17 KB |
安装次数 | 426 |
当前版本 | 1.1.10 |
更新时间 | 2024-01-26 |
上架时间 | 2023-06-06 |
评分 | 5.00/5 共1次评分 |
开发者 | eibun-hikaku.net |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://eibun-hikaku.net |
帮助页面URL | https://twitter.com/Mali_Khao_Niaw |
隐私政策页面URL | https://eibun-hikaku.net/topics/privacy_policy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Track Change GPT", "description": "Add track change function and text edit mode to ChatGPT", "version": "1.1.10", "icons": { "16": "icons\/pen16.png", "32": "icons\/pen32.png", "48": "icons\/pen48.png", "128": "icons\/pen128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "runAt": "document_end", "js": [ "js\/track_change_gpt.js" ], "css": [ "css\/style_gpt.css" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |