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 97ca973 commit faf5e87Copy full SHA for faf5e87
src/content-script/index.jsx
@@ -90,7 +90,9 @@ async function getInput(inputQuery) {
90
let input
91
if (typeof inputQuery === 'function') {
92
input = await inputQuery()
93
- if (input) return `Reply in ${await getPreferredLanguage()}.\n` + input
+ const replyPromptBelow = `Reply in ${await getPreferredLanguage()}. Regardless of the language of content I provide below. !!This is very important!!`
94
+ const replyPromptAbove = `Reply in ${await getPreferredLanguage()}. Regardless of the language of content I provide above. !!This is very important!!`
95
+ if (input) return `${replyPromptBelow}\n\n` + input + `\n\n${replyPromptAbove}`
96
return input
97
}
98
const searchInput = getPossibleElementByQuerySelector(inputQuery)
0 commit comments