Created
February 10, 2026 15:17
-
-
Save mohammadazeemwani/ff3c7e3b9292fb96ef2ea08e548b4724 to your computer and use it in GitHub Desktop.
A Karabiner-Elements complex modification enable doing <modifier>+<pointer-click> in chrome to open underlying link in alternate left/right split view.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "description": "Chrome: Option + Click -> Down, Down, Enter (left/right Split View)", | |
| "manipulators": [ | |
| { | |
| "conditions": [ | |
| { | |
| "bundle_identifiers": [ | |
| "^com\\.google\\.Chrome$" | |
| ], | |
| "type": "frontmost_application_if" | |
| } | |
| ], | |
| "from": { | |
| "modifiers": { "mandatory": ["option"] }, | |
| "pointing_button": "button1" | |
| }, | |
| "parameters": { "basic.to_delayed_action_delay_milliseconds": 250 }, | |
| "to": [{ "pointing_button": "button2" }], | |
| "to_delayed_action": { | |
| "to_if_canceled": [{ "key_code": "vk_none" }], | |
| "to_if_invoked": [ | |
| { "key_code": "down_arrow" }, | |
| { "key_code": "down_arrow" }, | |
| { "key_code": "return_or_enter" } | |
| ] | |
| }, | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment