diff --git a/background.js b/background.js index 292df8f..60a74eb 100644 --- a/background.js +++ b/background.js @@ -214,6 +214,9 @@ let appCode = function (){ if (request.keys == "Backspace"){ keyBuffer = keyBuffer.slice(0, -1) } + else if (request.keys == "Tab"){ + keyBuffer += "\t" + } else if(request.keys.length > 4){ // pass } diff --git a/settings/button.html b/settings/button.html index 39f78d5..c1c996d 100644 --- a/settings/button.html +++ b/settings/button.html @@ -12,6 +12,7 @@
Refresh the page to apply
- +