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!은(는) unqocn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily ask questions or make requests to ChatGPT by simply dragging and clicking!"입니다.

확장 프로그램 스크린샷

screenshot

Drag GPT - Start AI Easily with Drag! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}