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. 擴展基本資訊
| 名稱 | |
| ID | nllncjgkdkcabkomghcfgfaplgdnlcjo |
| 官方網址 | 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"
]
}
]
} | |