Open in GPT
Open selected text directly in ChatGPT with a customized prompt.
Open in GPT란 무엇입니까?
Open in GPT은(는) Josip Domazet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open selected text directly in ChatGPT with a customized prompt."입니다.
확장 프로그램 스크린샷
Open in GPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enables you to quickly open selected text in ChatGPT by right-clicking. Customize ChatGPT's behavior by setting a pre-filled prompt to provide contextual information. This ensures ChatGPT behaves like you want it to behave and enables you to make it solve repetitive tasks for you -- Automate the automation 🚀 Some Use Cases: • Answer questions in a specific manner (e.g. only ever answer with A, B, C, or D) • Give general context for tasks like summarizing a paragraph • Resolve code errors • Get language assistance • Translate text • Generate content in specific ways • Anything that you find yourself always copying into ChatGPT manually ... Usage: Click the extension icon to configure your custom prompt. Select text and right-click, then choose "Open selection in ChatGPT!" (Alternatively, press ALT + S). If you're working with other programs, use ALT + C to populate the prompt from your clipboard instead of selecting text.
확장 프로그램 기본 정보
이름 | Open in GPT |
ID | emplihipkdkncejkpofkbhldhdnickjo |
공식 URL | https://chromewebstore.google.com/detail/open-in-gpt/emplihipkdkncejkpofkbhldhdnickjo |
설명 | Open selected text directly in ChatGPT with a customized prompt. |
파일 크기 | 46.07 KB |
설치 횟수 | 51 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2023-07-20 |
출시 날짜 | 2023-07-14 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Josip Domazet |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open in GPT", "description": "Open selected text directly in ChatGPT with a customized prompt.", "version": "0.1.1", "version_name": "0.1.1", "manifest_version": 3, "default_locale": "en", "minimum_chrome_version": "88", "permissions": [ "contextMenus", "storage", "unlimitedStorage", "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "icons": { "16": "assets\/img\/16x16.png", "32": "assets\/img\/24x24.png", "48": "assets\/img\/32x32.png", "128": "assets\/img\/128x128.png" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "assets\/img\/16x16.png", "24": "assets\/img\/24x24.png", "32": "assets\/img\/32x32.png", "128": "assets\/img\/128x128.png" } }, "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "commands": { "trigger-selection": { "suggested_key": "Alt+S", "description": "Open ChatGPT with selection" }, "trigger-clipboard": { "suggested_key": "Alt+C", "description": "Open ChatGPT with clipboard instead of selection" } } } |