diff --git a/Core/Handling/KeyboardHandlerNotification.cs b/Core/Handling/KeyboardHandlerNotification.cs
index 03a812ce..2506d29f 100644
--- a/Core/Handling/KeyboardHandlerNotification.cs
+++ b/Core/Handling/KeyboardHandlerNotification.cs
@@ -12,7 +12,7 @@ public KeyboardHandlerNotification(FormNotificationBase notification){
         }
 
         bool IKeyboardHandler.OnPreKeyEvent(IWebBrowser browserControl, IBrowser browser, KeyType type, int windowsKeyCode, int nativeKeyCode, CefEventFlags modifiers, bool isSystemKey, ref bool isKeyboardShortcut){
-            if (type == KeyType.RawKeyDown){
+            if (type == KeyType.RawKeyDown && !browser.FocusedFrame.Url.StartsWith("chrome-devtools://")){
                 switch((Keys)windowsKeyCode){
                     case Keys.Enter:
                         notification.InvokeAsyncSafe(notification.FinishCurrentNotification);