We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c78c76e commit b0f60cdCopy full SHA for b0f60cd
2 files changed
README.md
@@ -48,6 +48,7 @@ Code with your favorite chatbot without tedious copy-pasting. The Connector exte
48
- Open WebUI
49
- OpenRouter Chat
50
- Perplexity
51
+- Kimi
52
- Qwen
53
- Yuanbao
54
packages/browser/src/content-scripts/send-prompt-content-script/chatbots/kimi.ts
@@ -37,10 +37,6 @@ export const kimi: Chatbot = {
37
// Focus the element first
38
input_element.focus()
39
40
- // Clear existing content by selecting all and deleting
41
- document.execCommand('selectAll', false)
42
- document.execCommand('delete', false)
43
-
44
// Insert the new text using execCommand which works better with Lexical
45
document.execCommand('insertText', false, message)
46
0 commit comments