Phrasely - ChatGPT Writing Tool

ChatGPT Writing Tool

Phrasely - ChatGPT Writing Toolคืออะไร?

Phrasely - ChatGPT Writing Tool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Phrasely และคุณลักษณะหลักของมันคือ "ChatGPT Writing Tool"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Phrasely - ChatGPT Writing Tool

ดาวน์โหลดไฟล์ส่วนขยาย Phrasely - ChatGPT Writing Tool ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The AI Writing Companion is a Chrome extension designed to assist writers by rephrasing and styling sentences. It allows users to send prompts to the OpenAI text completion endpoint, providing access to one of the most advanced natural language processing models available. This innovative tool is designed to improve writing efficiency and quality by assisting writers in generating ideas, drafting papers, and improving the clarity of their writing.

One of the key features of the AI Writing Companion is its ability to rephrase sentences. This feature allows users to enter a sentence and receive a range of alternative phrasings generated by the OpenAI text completion endpoint. The purpose of this feature is to provide writers with a range of options to choose from when struggling to find the right words to express an idea.

The extension also allows users to style their writing. This feature enables writers to apply different writing styles to their text, such as formal, informal, academic, and more. By using the extension to style their writing, users can ensure that their writing is consistent and targeted to their audience.

Using the AI Writing Companion is straightforward. After installing the Chrome extension, users can access it by clicking on the extension icon in their browser toolbar. From there, users can enter a prompt, select a writing style, and request rephrased or related sentences.

Overall, the AI Writing Companion is a powerful tool for anyone looking to improve their writing. By harnessing the power of the OpenAI text completion endpoint, this extension provides writers with a range of tools to enhance their writing and take it to the next level. Whether users are professional writers, students, or simply looking to improve their communication skills, the AI Writing Companion is a valuable resource.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Phrasely - ChatGPT Writing Tool Phrasely - ChatGPT Writing Tool
ID adococdejjckhckfebefppmpefghoilg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/phrasely-chatgpt-writing/adococdejjckhckfebefppmpefghoilg
คำอธิบาย ChatGPT Writing Tool
ขนาดไฟล์ 53.25 KB
จำนวนการติดตั้ง 272
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2023-08-22
วันที่เผยแพร่ 2023-03-10
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Phrasely
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Phrasely - ChatGPT Writing Tool",
    "description": "ChatGPT Writing Tool",
    "version": "0.0.6",
    "action": {
        "default_icon": {
            "128": "icon.png"
        }
    },
    "commands": {
        "open-tab": {
            "suggested_key": {
                "default": "Ctrl+J"
            },
            "description": "Open phrasely"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/editor.phrasely.app\/"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "build\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "icon.png",
                ".\/png",
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}