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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
}