Emin Umut Gerçek
Emin Umut Gerçek
Hi, > I would prefer it to be accessible by the left hand Excellent point! > "sG" - search google in background. `sG` is used for "Open OmniBar with selected...
`q` is ok for ergonomics, but removing `q` as a search alias is a bit problematic. Can we bind the space key?
I've wanted this for a long time. I use [Video Speed Controller](https://github.com/igrigorik/videospeed) it's an awesome extension, but its keys are not very well suited with any vim-like extension. For example,...
If I choose `Use system title bar and borders` from settings, Chrome shows the title of the page and `-Google Chrome` by default.   To change the title you...
Once I wanted this, then I forget.... I'll try to implement it.
You can use `mapkey` ```js // Bind to g H api.mapkey('gH', 'Say Hi', function() { //Your code alert("Hi"); }); ``` API is [here](https://github.com/brookhong/Surfingkeys/blob/master/docs/API.md#mapkey)
You can use [CSS color preference](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) with [`settings.theme={...}`](https://github.com/brookhong/Surfingkeys/wiki/Color-Themes). For example, below uses solarized-dark on dark preference, zenbonse on light preference ```js solarizedDark = ` .sk_theme { background: #100a14dd; color: #4f97d7;...
Solves #97 
I [use](https://github.com/eugercek/dotfiles/blob/master/surfingkeys.js#L102-L106) ```js api.mapkey(";c", "Copy title and url for org mode", () => { let url = document.URL; let title = document.title; api.Clipboard.write(`[[${url}][${title}]]`); }); ``` for copying into org-mode, similar...
Totally forgot this, will look at weekend.