ChatGPT Query Detector
A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Co je ChatGPT Query Detector?
ChatGPT Query Detector je rozšíření Chrome vyvinuté codekansas, a jeho hlavní funkcí je „A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChatGPT Query Detector
Stáhněte si soubory rozšíření ChatGPT Query Detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ChatGPT Query Detector |
ID | fpmkloadngjobjlckhokcaklldkjbojh |
Oficiální URL | https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh |
Popis | A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box |
Velikost souboru | 33.96 KB |
Počet instalací | 38 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2023-05-03 |
Datum Vydání | 2023-02-15 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | codekansas |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/codekansas/chatgpt-chrome-extension |
Podporované Jazyky | 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" } } |