ChatGPT Query Detector

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

Co to jest ChatGPT Query Detector?

ChatGPT Query Detector to rozszerzenie Chrome opracowane przez codekansas, a jego główną funkcją jest „A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Query Detector

Pobierz pliki rozszerzeń ChatGPT Query Detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Opis A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Rozmiar pliku 33.96 KB
Liczba instalacji 38
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-05-03
Data Publikacji 2023-02-15
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper codekansas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/codekansas/chatgpt-chrome-extension
Obsługiwane Języki 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"
    }
}