ChatGPT Search Shortcut

ChatGPT Search Shortcut for Chrome Based Browsers. Create a new ChatGPT Search Engine with the URL: https://chat.openai.com/?search=%s

Fra 25.04.2023. Se den seneste versjonen.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         ChatGPT Search Shortcut
// @namespace    https://greasyfork.org/en/users/943407-webchantment
// @version      1.0
// @description  ChatGPT Search Shortcut for Chrome Based Browsers. Create a new ChatGPT Search Engine with the URL: https://chat.openai.com/?search=%s
// @author       Webchantment
// @match        https://chat.openai.com/?search=*
// @grant        none
// ==/UserScript==

(async () => {

	const timeout = 500; //milliseconds

	setTimeout(() => {

		const urlParams = new URLSearchParams(window.location.search);
		const searchInput = urlParams.get("search");

		const textarea = document.querySelector("form > * textarea");
		const button = document.querySelector("form > * button");

		if (searchInput && textarea && button) {
			textarea.value = searchInput;
			button.disabled = false;
			button.click();
		}

	}, timeout);

})();