ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Vad är ChatGPT Shortcut?
ChatGPT Shortcut är en Chrome-tillägg utvecklad av Patrik Martinko, och dess huvudfunktion är "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Tilläggsskärmbilder
Ladda ner ChatGPT Shortcut-förlängningens CRX-fil
Ladda ner ChatGPT Shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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}
Grundläggande Information om Tillägg
Namn | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
Officiell webbadress | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Beskrivning | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Filstorlek | 28.12 KB |
Antal Installationer | 1,680 |
Aktuell Version | 1.0.4 |
Senast Uppdaterad | 2023-08-07 |
Publiceringsdatum | 2023-01-27 |
Betyg | 3.67/5 Totalt 3 Betyg |
Utvecklare | Patrik Martinko |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/patrik-martinko/app-chatgpt-shortcut |
Hjälpsida URL | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Stödda Språk | 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" } } |