SublimeGPT: ChatGPT Everywhere

Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.

SublimeGPT: ChatGPT Everywhere란 무엇입니까?

SublimeGPT: ChatGPT Everywhere은(는) https://sublimegpt.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

SublimeGPT: ChatGPT Everywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        SublimeGPT lets you:
- Open ChatGPT inside any website.
- See ChatGPT response alongside Google search results.
- Create your own prompts and use them on selected text in any web page.

How to open chat inside any website:
1. Make sure you're logged into your ChatGPT account.
2. Open any website and press Ctrl+Up Arrow (Cmd+Up Arrow on Mac) or click the extension icon on the navigation bar. You can change the keyboard shortcut in your browser's extension shortcuts page.
3. Start chatting with ChatGPT in the overlay dialog that opens up.

SublimeGPT is just a helper tool and is not affiliated with OpenAI or ChatGPT.                    

확장 프로그램 기본 정보

이름 SublimeGPT: ChatGPT Everywhere SublimeGPT: ChatGPT Everywhere
ID eecockeebhenbihmkaamjlgoehkngjea
공식 URL https://chromewebstore.google.com/detail/sublimegpt-chatgpt-everyw/eecockeebhenbihmkaamjlgoehkngjea
설명 Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.
파일 크기 60.11 KB
설치 횟수 407
현재 버전 0.2.0
최근 업데이트 2023-04-04
출시 날짜 2023-03-09
평점 3.71/5 총 7 개의 평점
개발자 https://sublimegpt.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SublimeGPT: ChatGPT Everywhere",
    "short_name": "SublimeGPT",
    "version": "0.2.0",
    "description": "Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.",
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/*"
    ],
    "action": {
        "default_title": "Open Chat"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "app\/*"
            ]
        }
    ],
    "commands": {
        "open-app": {
            "suggested_key": {
                "default": "Ctrl+Up",
                "mac": "Command+Up"
            },
            "description": "Open chat in the current tab."
        }
    }
}