ChatGPT Query Detector

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

Vad är ChatGPT Query Detector?

ChatGPT Query Detector är en Chrome-tillägg utvecklad av codekansas, och dess huvudfunktion är "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT Query Detector-förlängningens CRX-fil

Ladda ner ChatGPT Query Detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
Beskrivning A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Filstorlek 33.96 KB
Antal Installationer 38
Aktuell Version 1.2
Senast Uppdaterad 2023-05-03
Publiceringsdatum 2023-02-15
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare codekansas
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/codekansas/chatgpt-chrome-extension
Stödda Språk 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"
    }
}