ChatGPT Enter Key Control
Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc
什么是ChatGPT Enter Key Control?
ChatGPT Enter Key Control是由0xCJ开发的Chrome扩展程序,该扩展的主要功能是“Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc”。
扩展截图
下载ChatGPT Enter Key Control扩展crx文件
下载ChatGPT Enter Key Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc. Send messages in ChatGPT/Google Bard/chatpdf/poe etc using "Ctrl+Enter" combination. Additionally, there is a convenient toggle button that allows you to easily enable or disable the extension.
扩展基本信息
名称 | ChatGPT Enter Key Control |
ID | nllncjgkdkcabkomghcfgfaplgdnlcjo |
官方URL | https://chromewebstore.google.com/detail/chatgpt-enter-key-control/nllncjgkdkcabkomghcfgfaplgdnlcjo |
简介 | Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc |
文件大小 | 15.68 KB |
安装次数 | 387 |
当前版本 | 1.0.0 |
更新时间 | 2023-07-13 |
上架时间 | 2023-07-12 |
评分 | 1.67/5 共3次评分 |
开发者 | 0xCJ |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "manifest_version": 3, "version": "1.0.0", "action": { "default_popup": "popup.html", "default_icon": { "128": "icons\/enter128.png" } }, "icons": { "128": "icons\/enter128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/chat.openai.com\/*", "https:\/\/poe.com\/*", "https:\/\/www.phind.com\/*", "https:\/\/bard.google.com\/*", "https:\/\/www.chatpdf.com\/*", "https:\/\/www.perplexity.ai\/*" ], "background": { "service_worker": "service_worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/poe.com\/*", "https:\/\/www.phind.com\/*", "https:\/\/bard.google.com\/*", "https:\/\/www.chatpdf.com\/*", "https:\/\/www.perplexity.ai\/*" ], "js": [ "content_script.js" ] } ] } |