ChatGPT Ctrl+Enter Sender
Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter.
ChatGPT Ctrl+Enter Sender क्या है?
ChatGPT Ctrl+Enter Sender masachika.kmd द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Ctrl+Enter Sender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The ChatGPT Ctrl+Enter Sender is an extension that allows you to send messages on sites like ChatGPT using "Ctrl+Enter". You can now use the Enter key, which was originally used to send messages, to create a new line, so there will be no more accidental sending of messages by pressing the Enter key. By clicking the icon, you can easily toggle the extension on/off with a switch button. You can use this extension on the following pages: ChatGPT Poe (https://poe.com) phind (https://www.phind.com) Bard (https://bard.google.com) ChatPDF (https://www.chatpdf.com) perplexity (https://www.perplexity.ai) ※ If you encounter any bugs or have any concerns, please open an issue on the following GitHub repository and we will address it. https://github.com/masachika-kamada/ChatGPT-Ctrl-Enter-Sender
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT Ctrl+Enter Sender |
ID | gbncgdhklmnckojlibfhdadpfbcdbnch |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-ctrl+enter-sender/gbncgdhklmnckojlibfhdadpfbcdbnch |
विवरण | Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter. |
फ़ाइल का आकार | 16.37 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2023-09-05 |
प्रकाशन तिथि | 2023-04-11 |
रेटिंग | 4.52/5 कुल 25 रेटिंग्स |
डेवलपर | masachika.kmd |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/masachika-kamada/ChatGPT-Ctrl-Enter-Sender |
समर्थित भाषाएँ | en,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "1.2.0", "description": "__MSG_appDesc__", "default_locale": "en", "author": "Kamada Masachika", "permissions": [ "storage" ], "background": { "service_worker": "background.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": [ "script.js" ] } ], "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "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\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" } } } |