Skip to content

Instantly share code, notes, and snippets.

@kidonng
Last active July 24, 2026 09:39
Show Gist options
  • Select an option

  • Save kidonng/b76eeebee956c0432f3c0c526c7c8882 to your computer and use it in GitHub Desktop.

Select an option

Save kidonng/b76eeebee956c0432f3c0c526c7c8882 to your computer and use it in GitHub Desktop.
Surfingkeys settings
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