ChatGPT Query Detector
A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
Wat is ChatGPT Query Detector?
ChatGPT Query Detector is een Chrome-extensie ontwikkeld door codekansas, en de belangrijkste functie is "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Query Detector
Download ChatGPT Query Detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ChatGPT Query Detector |
ID | fpmkloadngjobjlckhokcaklldkjbojh |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh |
Beschrijving | A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box |
Bestandsgrootte | 33.96 KB |
Aantal Installaties | 38 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2023-05-03 |
Publicatiedatum | 2023-02-15 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | codekansas |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/codekansas/chatgpt-chrome-extension |
Ondersteunde Talen | 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" } } |