ChatGPT Enter Key Control
Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc
Vad är ChatGPT Enter Key Control?
ChatGPT Enter Key Control är en Chrome-tillägg utvecklad av 0xCJ, och dess huvudfunktion är "Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc".
Tilläggsskärmbilder
Ladda ner ChatGPT Enter Key Control-förlängningens CRX-fil
Ladda ner ChatGPT Enter Key Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | nllncjgkdkcabkomghcfgfaplgdnlcjo |
| Officiell webbadress | https://chromewebstore.google.com/detail/chatgpt-enter-key-control/nllncjgkdkcabkomghcfgfaplgdnlcjo |
| Beskrivning | Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc |
| Filstorlek | 15.68 KB |
| Antal Installationer | 387 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2023-07-13 |
| Publiceringsdatum | 2023-07-12 |
| Betyg | 1.67/5 Totalt 3 Betyg |
| Utvecklare | 0xCJ |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |