aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/index.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/content/index.js b/src/content/index.js
index e882a68..88a668e 100644
--- a/src/content/index.js
+++ b/src/content/index.js
@@ -16,6 +16,10 @@ const invokeEvent = (action) => {
}
window.addEventListener("keydown", (e) => {
+ if (e.target instanceof HTMLInputElement) {
+ return;
+ }
+
let request = {
type: 'event.keydown',
code: e.keyCode,