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 là gì?

ChatGPT Query Detector là một tiện ích mở rộng Chrome được phát triển bởi codekansas, và tính năng chính của nó là "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Query Detector

Tải xuống các tệp mở rộng ChatGPT Query Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Mô tả A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Kích Thước Tệp 33.96 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-05-03
Ngày Phát Hành 2023-02-15
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển codekansas
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/codekansas/chatgpt-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}