Last active
July 24, 2026 09:39
-
-
Save kidonng/b76eeebee956c0432f3c0c526c7c8882 to your computer and use it in GitHub Desktop.
Surfingkeys settings
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
| const { | |
| addSearchAlias, | |
| mapkey, | |
| } = api | |
| const $ = selector => document.querySelector(selector) | |
| addSearchAlias('a', 'AI Mode', 'https://www.google.com/search?udm=50&q=') | |
| mapkey('\\', 'Toggle Sidebar', function() { | |
| ($('.gem-menu-item-icon') || $('[aria-label="Open sidebar"]')).click() | |
| }, { domain: /gemini\.google\.com/ }) | |
| mapkey('<Esc>', 'Close Popup', function() { | |
| $('[aria-label="Close"]')?.click() | |
| }, { domain: /aistudio\.google\.com/ }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment