ChatGPT Query Detector
A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
What is ChatGPT Query Detector?
ChatGPT Query Detector is a Chrome extension developed by codekansas, and its main feature is "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".
Extension Screenshots
Download ChatGPT Query Detector Extension CRX File
Download ChatGPT Query Detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ChatGPT Query Detector |
ID | fpmkloadngjobjlckhokcaklldkjbojh |
Official URL | https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh |
Description | A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box |
File Size | 33.96 KB |
Installation Count | 38 |
Current Version | 1.2 |
Last Updated | 2023-05-03 |
Publish Date | 2023-02-15 |
Rating | 1.00/5 Total 1 Ratings |
Developer | codekansas |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/codekansas/chatgpt-chrome-extension |
Supported Languages | 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" } } |