Auto Toggle F9 Reader Mode in Edge Chromium Browser

Use an AHK script to activate Reader Mode (F9) on specific website without clicking on a mouse or keyboard.

By β™Ÿ Vondelphia.com β€” Updated Nov 16, 2020

See Immersive Reader Mode in Action

Check it out, just move your mouse to the top right corner of your screen and wait 1 second to auto activate Reader Mode.

auto-toggle-f9-reader-mode-in-edge-chromium-browser
Enter Immersive Reader Mode using AHK Mouse Gesture

Let’s just say you are lounging back in your chair with a hand ONLY on the mouse and want to activate immersive reader mode without clicking a mouse button or using a keyboard. Let’s setup a mouse gesture with the following criteria:

  • Use AutoHotKey
  • Only send key if active window is a browser
  • Detect mouse position
  • Add a cooldown timer to only activate every 1 second
  • Don’t need to click a mouse or a keyboard
  • Active Reader mode when moving mouse to TOP RIGHT corner of monitor
; ---- AUTO READER MODE ----

#Persistent
CoordMode, Mouse, Screen
SetTimer, CheckPos, 750
return

CheckPos:
	if !WinActive("ahk_exe msedge.exe")
		return
	MouseGetPos, x, y
	if (x = 1919 && y = 0)
		Send, {F9}
return

Was this helpful?

Yes! πŸŽ‰ No! πŸ˜‘

Not quite what you're looking for? Get Help

1 thought on “Auto Toggle F9 Reader Mode in Edge Chromium Browser”

  1. Ironically, at the time of writing this blog post, Edge Browser does not let me activate F9 Immersive Reader Mode on blog posts…. not sure why! I’ve tried disabling all sorts of stuff on blog posts but nothing works.

    Gotta dig into this later.

    Reply

Leave a Comment

Item added to cart.
0 items - $0