ChatGPT Query Detector

A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box

ChatGPT Query Detectorとは何ですか?

ChatGPT Query Detectorはcodekansasによって開発されたChromeの拡張機能で、その主な機能は「A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box」です。

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

screenshot

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

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

拡張機能の使用方法

                        This is a simple Chrome extension which loads a bit of Javascript to the ChatGPT website to detect if the "q" parameter was set, and if so, enters it into the chat bar.                    

拡張機能の基本情報

名前 ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
公式URL https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
説明 A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
ファイルサイズ 33.96 KB
インストール数 38
現在のバージョン 1.2
最終更新日 2023-05-03
公開日 2023-02-15
評価 1.00/5 合計 1 レビュー
開発者 codekansas
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/codekansas/chatgpt-chrome-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Query Detector",
    "description": "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box",
    "version": "1.2",
    "icons": {
        "128": "128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}