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ファイルをダウンロード

SublimeGPT: ChatGPT Everywhere拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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."
        }
    }
}