diff --git a/background.js b/background.js index 44c980a..3080c80 100644 --- a/background.js +++ b/background.js @@ -57,11 +57,17 @@ let appCode = function (){ setTimeout(function(){ document.addEventListener('keyup', function(e){ + if (e.key.startsWith('Arrow') || e.key.startsWith('Page')){ + return true; + } pausecomp(dwellTime); return true; }, ) document.addEventListener('keydown', function(e){ + if (e.key.startsWith('Arrow') || e.key.startsWith('Page')){ + return true; + } pausecomp(gapTime); return true; }) diff --git a/manifest.json b/manifest.json index ae936f9..a9147a3 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Private Keyboard", - "version": "1.2", + "version": "1.3", "description": "Protect against keyboard biometrics",