Track Change GPT
Add track change function and text edit mode to ChatGPT
Track Change GPTคืออะไร?
Track Change GPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eibun-hikaku.net และคุณลักษณะหลักของมันคือ "Add track change function and text edit mode to ChatGPT"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Track Change GPT
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |