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
官方網址 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
電子郵箱 [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"
    }
}