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 |
电子邮箱 | [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" } } |