ChatGPT Rewriter

Use ChatGPT to rewrite your texts

ChatGPT Rewriter là gì?

ChatGPT Rewriter là một tiện ích mở rộng Chrome được phát triển bởi Sandaruwan Gunathilake, và tính năng chính của nó là "Use ChatGPT to rewrite your texts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Rewriter

Tải xuống các tệp mở rộng ChatGPT Rewriter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Rewriter ChatGPT Rewriter
ID labihkcmhekblajdihbblcgcapbkckie
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-rewriter/labihkcmhekblajdihbblcgcapbkckie
Mô tả Use ChatGPT to rewrite your texts
Kích Thước Tệp 187 KB
Số Lần Cài Đặt 1,278
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-05-04
Ngày Phát Hành 2023-05-04
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Sandaruwan Gunathilake
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sandaru1/chatgpt-chrome-extension
URL Trang Trợ Giúp https://github.com/sandaru1/chatgpt-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}