ChatGPT Query Detector

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

Cos'è ChatGPT Query Detector?

ChatGPT Query Detector è un'estensione di Chrome sviluppata da codekansas, e la sua funzione principale è "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Query Detector

Scarica i file di estensione ChatGPT Query Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Descrizione A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Dimensione del File 33.96 KB
Conteggio Installazioni 38
Versione Corrente 1.2
Ultimo Aggiornamento 2023-05-03
Data di Pubblicazione 2023-02-15
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore codekansas
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/codekansas/chatgpt-chrome-extension
Lingue Supportate 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"
    }
}