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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
"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\/*" ] } ] } |