ChatGPT Shortcut

Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

什麼是ChatGPT Shortcut?

ChatGPT Shortcut是由Patrik Martinko開發的Chrome擴展程式,該擴展的主要功能是“Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.”。

擴展截圖

screenshot

下載ChatGPT Shortcut擴展crx文件

下載ChatGPT Shortcut擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ...

Structure of query: https://chat.openai.com/chat?q={query}                    

擴展基本資訊

名稱 ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
官方網址 https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
簡介 Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
檔案大小 28.12 KB
安裝次數 1,680
目前版本 1.0.4
更新時間 2023-08-07
上架時間 2023-01-27
評分 3.67/5 共 3 次評分
開發者 Patrik Martinko
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/patrik-martinko/app-chatgpt-shortcut
說明頁面URL https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Shortcut",
    "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}