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文件

下載ChatGPT Rewriter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}