ChatGPT Deeplink
Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Co to jest ChatGPT Deeplink?
ChatGPT Deeplink to rozszerzenie Chrome opracowane przez Paul Arterburn, a jego główną funkcją jest „Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT Deeplink
Pobierz pliki rozszerzeń ChatGPT Deeplink w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT Deeplink |
ID | bmkbpmkcppdmkdbpihmijgeilchgeapo |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo |
Opis | Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation. |
Rozmiar pliku | 12.55 KB |
Liczba instalacji | 83 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2023-08-08 |
Data Publikacji | 2023-08-07 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | Paul Arterburn |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://chat.openai.com |
Adres URL Strony Pomocy | https://twitter.com/parterburn |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Deeplink", "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.", "version": "1.1", "homepage_url": "https:\/\/chat.openai.com", "omnibox": { "keyword": "ai" }, "permissions": [ "scripting", "webNavigation", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_popup": "settings.html" } } |