ChatGPT Rewriter

Use ChatGPT to rewrite your texts

ChatGPT Rewriter란 무엇입니까?

ChatGPT Rewriter은(는) Sandaruwan Gunathilake에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use ChatGPT to rewrite your texts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ChatGPT Rewriter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This chrome extension enables you to enhance and refine your text using ChatGPT. 

Instructions

1. Select any editable text in your browser.
2. Look for the ChatGPT Rewriter options.
3. Select "Rewrite using ChatGPT" if you want to rewrite the text.
4. Select "Ask ChatGPT" if you want to ask a question.
5. The answer will replace your text.

A loading indicator will appear on the upper right-hand corner of the page while the text is being processed.

To utilize this extension, you must have a chatGPT account. Once your account is established, the extension will guide you on how to generate and configure the API keys.                    

확장 프로그램 기본 정보

이름 ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
공식 URL https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
설명 Use ChatGPT to rewrite your texts
파일 크기 187 KB
설치 횟수 1,278
현재 버전 1.0
최근 업데이트 2023-05-04
출시 날짜 2023-05-04
평점 1.00/5 총 1 개의 평점
개발자 Sandaruwan Gunathilake
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sandaru1/chatgpt-chrome-extension
도움말 페이지 URL https://github.com/sandaru1/chatgpt-chrome-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Rewriter",
    "description": "Use ChatGPT to rewrite your texts",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "options_page": "src\/options\/options.html"
}