ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
What is ChatGPT Shortcut?
ChatGPT Shortcut is a Chrome extension developed by Patrik Martinko, and its main feature is "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Extension Screenshots
Download ChatGPT Shortcut Extension CRX File
Download ChatGPT Shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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}
Extension Basic Information
Name | |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
Official URL | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Description | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
File Size | 28.12 KB |
Installation Count | 1,680 |
Current Version | 1.0.4 |
Last Updated | 2023-08-07 |
Publish Date | 2023-01-27 |
Rating | 3.67/5 Total 3 Ratings |
Developer | Patrik Martinko |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/patrik-martinko/app-chatgpt-shortcut |
Help Page URL | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Supported Languages | 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" } } |