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