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
电子邮箱 [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"
    }
}