ChatGPT everywhere

Adds chat-gpt functionality to any textbox on the web.

ChatGPT everywhereคืออะไร?

ChatGPT everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcel Panse และคุณลักษณะหลักของมันคือ "Adds chat-gpt functionality to any textbox on the web."

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

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

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

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

                        ChatGPT-Everywhere is an open-source chrome extension that enhances your writing skills with the power of GPT. It enables you to use GPT on almost any input field on the web, such as writing an email in Gmail, a ticket in Jira, a message on Twitter, or a comment on GitHub.

This extension has a range of features intended for writers to optimize their writing experience:
- Improve your text:  It suggests better word choices and phrasing to make your writing more sophisticated.
- Make it longer: If you're struggling to hit a word count, this option helps you research and add more information.
- Make it shorter: Want to cut down words without compromising the context? This feature provides you with a concise and accurate summary of your content.
- Create summary: It generates a compact summary of your paragraphs with the essential notes.
- Ask question: This feature lets you execute commands such as "write a resignation letter," and GPT will automatically execute the command for you.

ChatGPT-Everywhere is fully open-source, and we encourage Pull Requests to add new functionality or improvements. Join our community on GitHub at https://github.com/marcelpanse/ChatGPT-Everywhere.                    

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

ชื่อ ChatGPT everywhere ChatGPT everywhere
ID kebfhgodkejbfelbbcekkamfpcichken
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-everywhere/kebfhgodkejbfelbbcekkamfpcichken
คำอธิบาย Adds chat-gpt functionality to any textbox on the web.
ขนาดไฟล์ 28.51 KB
จำนวนการติดตั้ง 2,331
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2023-03-30
วันที่เผยแพร่ 2023-03-25
คะแนน 4.43/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Marcel Panse
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marcelpanse/chatgpt-everywhere
URL หน้าช่วยเหลือ https://github.com/marcelpanse/chatgpt-everywhere/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT everywhere",
    "short_name": "ChatGPT everywhere",
    "description": "Adds chat-gpt functionality to any textbox on the web.",
    "homepage_url": "https:\/\/github.com\/marcelpanse\/chatgpt-everywhere",
    "version": "0.1.0",
    "version_name": "0.1.0",
    "manifest_version": 3,
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "permissions": [
        "activeTab",
        "contextMenus",
        "background",
        "storage"
    ],
    "icons": {
        "128": "assets\/img\/128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/api.openai.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selection.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/img\/16x16.png",
            "24": "assets\/img\/24x24.png",
            "32": "assets\/img\/32x32.png"
        },
        "default_title": "GPT everywhere",
        "default_popup": "popup.html"
    }
}