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 - это расширение Chrome, разработанное 0xCJ, и его основная функция - "Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc".
Снимки экрана расширения
Скачать файл CRX расширения ChatGPT Enter Key Control
Скачайте файлы расширений 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" ] } ] } |