Drag GPT - Start AI Easily with Drag!

Easily ask questions or make requests to ChatGPT by simply dragging and clicking!

Drag GPT - Start AI Easily with Drag!คืออะไร?

Drag GPT - Start AI Easily with Drag! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย unqocn และคุณลักษณะหลักของมันคือ "Easily ask questions or make requests to ChatGPT by simply dragging and clicking!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Drag GPT - Start AI Easily with Drag!

ดาวน์โหลดไฟล์ส่วนขยาย Drag GPT - Start AI Easily with Drag! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        A Chrome extension that makes it easy to call the Chat GPT API and start a conversation via dragging. You can preset your favorite prompts and replace them according to the situation.

The extension's popup window also allows for quick chats.

v1.3.9
- You can now see the name of the selected slot when you hover over the request button.
- Added a prompt generator feature - if you have a favorite prompt, create it with the prompt generator!
- Other styling fixes

v1.3.10
- Icon fixes

v1.3.11
- Styling fixes
- TEMPERATURE is now adjustable in the prompt slot.

v1.4.1
- DragGPT & Quick Chat now works as Stream.

v1.4.5
- GPT4 can be optionally enabled via toggle (when creating quick chats and slots)
- Removed prompt generator feature.
- Other styling fixes

v1.4.6
- Chat history can now be viewed on the options page.
- Other usability improvements
- Other styling fixes

v1.4.7
- Styling fixes

v1.4.9
- Style Fixes Hotfix

v1.4.11
- Fix end sentence truncation due to openai response format change

v1.4.13
- Fix sentence truncation due to OpenAI model update and response format change                    

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

ชื่อ Drag GPT - Start AI Easily with Drag! Drag GPT - Start AI Easily with Drag!
ID akgdgnhlglhelinkmnmiakgccdkghjbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/drag-gpt-start-ai-easily/akgdgnhlglhelinkmnmiakgccdkghjbh
คำอธิบาย Easily ask questions or make requests to ChatGPT by simply dragging and clicking!
ขนาดไฟล์ 253 KB
จำนวนการติดตั้ง 183
เวอร์ชันปัจจุบัน 1.4.14
อัปเดตครั้งล่าสุด 2024-02-19
วันที่เผยแพร่ 2023-03-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา unqocn
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Jonghakseo/drag-gpt-extension
URL หน้าช่วยเหลือ https://github.com/Jonghakseo/drag-gpt-extension/issues
ภาษาที่รองรับ en,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "default_locale": "ko",
    "version": "1.4.14",
    "description": "__MSG_extensionDescription__",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle.chunk.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}