ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Wat is ChatGPT Shortcut?
ChatGPT Shortcut is een Chrome-extensie ontwikkeld door Patrik Martinko, en de belangrijkste functie is "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Shortcut
Download ChatGPT Shortcut-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 especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ... Structure of query: https://chat.openai.com/chat?q={query}
Basisinformatie over de Extensie
Naam | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Beschrijving | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Bestandsgrootte | 28.12 KB |
Aantal Installaties | 1,680 |
Huidige Versie | 1.0.4 |
Laatst Bijgewerkt | 2023-08-07 |
Publicatiedatum | 2023-01-27 |
Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Patrik Martinko |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/patrik-martinko/app-chatgpt-shortcut |
Help Pagina-URL | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Shortcut", "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.", "version": "1.0.4", "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "script.js" ] } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" } } |