editGPT
Easily proofread, edit, and track changes to your content in ChatGPT.
editGPT란 무엇입니까?
editGPT은(는) https://editgpt.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily proofread, edit, and track changes to your content in ChatGPT."입니다.
확장 프로그램 스크린샷
editGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
UPDATE: The 'editGPT' button will appear in the top corner of ChatGPT after a message is sent. Instructions 1. Install the extension 2. Go to the chatGPT website. The extension only works on https://chat.openai.com/ 3. Type in a prompt that includes the text you want to edit, for example: "Proofread this: [insert your text here]." 3. Wait for the response! The 'editGPT' button only appears after the response is complete. 5. Click on the button to turn on editing mode. Track Changes Select (highlight) the text and press Accept or Reject button to accept or reject changes in the highlighted portion. Reset button will reset to original. Markup button will show/hide markup. Clipboard button will copy your text including any changes you've made to clipboard (without markup). Example Prompts These four prompts typically increase how intrusive chatGPT's editing is. 1. Proofread this but only fix grammar: 2. Proofread this: 3. Proofread this, lightly improving clarity and flow: 5. Proofread this, improving clarity and flow: Other prompts: Proofread this, significantly improving clarity and flow: Rewrite this, improving prose: Proofread these bullet points from my CV, keep it in CV language: Proofread these bullet points: Note: Everything after 'Proofread' or 'Rewrite' and before the first colon (:) will be considered a prompt and removed from the text comparison ** CHANGE LOG ** Version 1.0.18: Added support for HTML iFrame generation Version 1.0.20: Fixed editgpt button not appearing
확장 프로그램 기본 정보
이름 | editGPT |
ID | mognjodfeldknhobgbnkoomipkmlnnhk |
공식 URL | https://chromewebstore.google.com/detail/editgpt/mognjodfeldknhobgbnkoomipkmlnnhk |
설명 | Easily proofread, edit, and track changes to your content in ChatGPT. |
파일 크기 | 50.85 KB |
설치 횟수 | 61,005 |
현재 버전 | 1.0.20 |
최근 업데이트 | 2024-02-08 |
출시 날짜 | 2023-02-09 |
평점 | 4.41/5 총 32 개의 평점 |
개발자 | https://editgpt.app |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.editgpt.app/ |
개인정보 보호 정책 페이지 URL | https://sites.google.com/view/editgpt-app/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "editGPT", "version": "1.0.20", "manifest_version": 3, "description": "Easily proofread, edit, and track changes to your content in ChatGPT.", "homepage_url": "http:\/\/editgpt.app", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "service_worker": "background.js" }, "permissions": [ "clipboardWrite" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "src\/inject\/inject.js" ], "css": [ "css\/inject.css" ] } ] } |