ChatGPT Query Detector

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

Hvad er ChatGPT Query Detector?

ChatGPT Query Detector er en Chrome-udvidelse udviklet af codekansas, og dens hovedfunktion er "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Udvidelsesskærmbilleder

screenshot

Download ChatGPT Query Detector-udvidelses-CRX-fil

Download ChatGPT Query Detector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
Officiel URL https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Beskrivelse A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Filstørrelse 33.96 KB
Antal Installationer 38
Nuværende Version 1.2
Senest Opdateret 2023-05-03
Udgivelsesdato 2023-02-15
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler codekansas
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/codekansas/chatgpt-chrome-extension
Understøttede Sprog 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"
    }
}