ChatGPT Rewriter

Use ChatGPT to rewrite your texts

ChatGPT Rewriterคืออะไร?

ChatGPT Rewriter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sandaruwan Gunathilake และคุณลักษณะหลักของมันคือ "Use ChatGPT to rewrite your texts"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Rewriter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}