ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
ChatGPT Shortcutとは何ですか?
ChatGPT ShortcutはPatrik Martinkoによって開発されたChromeの拡張機能で、その主な機能は「Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.」です。
拡張機能のスクリーンショット
ChatGPT Shortcut拡張機能のCRXファイルをダウンロード
ChatGPT Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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}
拡張機能の基本情報
名前 | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
公式URL | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
説明 | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
ファイルサイズ | 28.12 KB |
インストール数 | 1,680 |
現在のバージョン | 1.0.4 |
最終更新日 | 2023-08-07 |
公開日 | 2023-01-27 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | Patrik Martinko |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/patrik-martinko/app-chatgpt-shortcut |
ヘルプページのURL | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
対応言語 | 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" } } |