ChatGPT Deeplink

Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.

ChatGPT Deeplinkとは何ですか?

ChatGPT DeeplinkはPaul Arterburnによって開発されたChromeの拡張機能で、その主な機能は「Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.」です。

拡張機能のスクリーンショット

screenshot

ChatGPT Deeplink拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here

It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).                    

拡張機能の基本情報

名前 ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
公式URL https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
説明 Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
ファイルサイズ 12.55 KB
インストール数 83
現在のバージョン 1.1
最終更新日 2023-08-08
公開日 2023-08-07
評価 5.00/5 合計 5 レビュー
開発者 Paul Arterburn
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://chat.openai.com
ヘルプページのURL https://twitter.com/parterburn
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Deeplink",
    "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.",
    "version": "1.1",
    "homepage_url": "https:\/\/chat.openai.com",
    "omnibox": {
        "keyword": "ai"
    },
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "settings.html"
    }
}