ChatGPT Query Detector

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

Apa itu ChatGPT Query Detector?

ChatGPT Query Detector adalah ekstensi Chrome yang dikembangkan oleh codekansas, dan fitur utamanya adalah "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ChatGPT Query Detector

Unduh file ekstensi ChatGPT Query Detector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
URL Resmi https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Deskripsi A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Ukuran File 33.96 KB
Jumlah Instalasi 38
Versi Saat Ini 1.2
Terakhir Diperbarui 2023-05-03
Tanggal Publikasi 2023-02-15
Penilaian 1.00/5 Total 1 Penilaian
Pengembang codekansas
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/codekansas/chatgpt-chrome-extension
Bahasa yang Didukung 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"
    }
}