brookhong / Surfingkeys
- четверг, 18 августа 2016 г. в 03:16:20
JavaScript
Map your keys for web surfing, expand your browser with javascript and keyboard.
Surfingkeys is another Chrome extension that provides keyboard-based navigation and control of the web in the spirit of the VIM editor. But it's not for VIM users only, it's for anyone who just needs some more shortcuts to his own functions.
Surfingkeys is created with all settings described in Javascript, so it's easy for anyone to map any keystrokes to his own defined Javascript function. For example,
mapkey('<Ctrl-y>', 'Show me the money', function() {
Normal.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).');
});
Reference for editing your own settings.
*
to search word under cursor in visual mode.e
d
) work for not only top window but also scrollable DIV.w
to switch frames if there is.sm
to preview markdownAfter you install the extension from Chrome Web Store, open a site you'd like. Then press ?
or u
to take a quick look on the default mappings first. Press Esc
to hide the usage popover.
Try some mappings described in the usage popover. For example, press e
to scroll a page up, d
to scroll a page down, se
to open settings page.
?
to show help
t
to search bookmarks/history
/
to find in current page
f
to follow links
v
to toggle visual mode
T
to switch tabs
Default hint characters for links are asdfgqwertzxcvb
, it quits when a non-hint key is pressed. Add below line to your settings to make it right hand:
Hints.characters = 'yuiophjklnm'; // for right hand
When hints are overlapped, press Shift
to flip them.
There are three modes in Surfingkeys: normal, visual and insert.
When you open a page, it enters normal mode automatically. All mappings added with mapkey
work in this mode.
Press v
to toggle visual mode. You'll see an indicator at bottom of current page - Caret
or Range
, and a large cursor on page. The cursor is made large for visibility, as sometimes it's not easy for human to locate a normal cursor on a web page.
Caret
indicates that cursor is moved when you press jkhl, Range
indicates that you'll select text when moving cursor.
Now here is a small practice,
v
you'll see Caret
v
again, you'll see Range
.sg
to see what will happen.v
again to back to normal mode.All mappings added with vmapkey
work in this mode, with some built-in mappings like those in VIM - j
k
h
l
b
w
0
$
etc.
When focus is switched into any editable element by whatever means(i
hints or f
hints or mouse click), Insert mode is on.
All mappings added with imapkey
work in this mode.
`Ctrl - i` to open vim editor to edit.
Find
is not actually a mode, it just another way to enter visual mode. Press /
to open find bar, which sits at almost the same position with Mode indicator, type something there. All occurrences of your input will be highlighted. Press Enter
to finish the finding, and you're in Caret
visual mode now, press n
to find next, N
to find previous.
The omnibar provides kinds of functions that need user input, for example,
t
b
og
/ ow
...:
In omnibar opened with t
`Ctrl - d` to delete from bookmark or history
In omnibar opened with b
`Ctrl - <any letter>` to create vim-like global mark
My favorite feature from when I was using Firefox. For both Firefox and Chrome, the extensions make it through context menu. Surfingkeys makes it through key mappings. By default, when you press sg
in normal mode, it will search selected text with google, if there is none selected, it will search text from system clipboard with google. In visual mode, it will search selected text with google.
The g
in sg
is a search alias for google, there are some other built-in search aliases -- like w
for bing. So press sw
to search selected with bing. Refer to Add search alias to omnibar to add your own search alias, especially those search engines for company inside.
Besides that, there is a sog
, to search selected text only in this site with google. For sog
, s
is the search_leader_key, o
is the only_this_site_key, g
is the search alias.
The search_leader_key s
plus captial alias G
will search selected with google interactively, all other search aliases and those you added through API addSearchAliasX
work in same way.
You can create vim-like marks by pressing m
, followed by a word character(a-z for local marks, others like 0-9 / A-Z for global marks), used as mark name. For example, if you press ma
on this page, you'll create a mark named a
which points to this page. Then pressing 'a
anywhere, you'll jump to this page.
In this way, the created mark always points to current URL. You can also create vim-like marks from the bookmarks. Try following steps:
b
to open bookmarks.f
.Then afterwards 'F
will open that URL directly.
This is very useful for those pages you access very frequently. om
to check out all the vim-like marks you have created.
By default, pressing T
will show all opened tabs in an overlay, then pressing the hint char, will switch to the related tab.
There is settings.tabsThreshold
here. When total of opened tabs exceeds settings.tabsThreshold
(default as 9), omnibar will be used for choosing tabs.
If you prefer to use omnibar always, use below mapping:
mapkey(' ', 'Choose a tab with omnibar', 'Normal.openOmnibar(OpenTabs)');
which works same as:
settings.tabsThreshold = 0;
The tabs are displayed in MRU order by default, either in omnibar or overlay. If you want them in natural order, use:
settings.tabsMRUOrder = false;
:
to open omnibar for commands, then you can execute any pre-defined or customized command there. The result will be displayed below the omnibar. To create your own command as below:
command('<command_name>', '<help message for this command>', function() {
// to do
});
For example,
command('setProxyMode', 'setProxyMode <always|direct|byhost>', function(mode) {
RUNTIME('updateProxy', {
mode: mode
});
return true;
});
// create shortcuts for the command with different parameters
map('spa', ':setProxyMode always');
map('spb', ':setProxyMode byhost');
map('spd', ':setProxyMode direct');
Besides commands, you can also run javascript code.
Smooth scroll works for any scrollable element. It is on by defualt, to turn it off as below:
settings.smoothScroll = false;
To create session in Chrome with Surfingkeys will save URLs for all tabs, and to open a session will open all the URLs of the session in different tab, so basically a session is a list of URLs, which has a name.
ZZ
will save all current tabs into a session named LAST
then quit.ZR
will restore the session named LAST
.ZQ
will just quit.You can create multiple sessions with different names in command mode. Press :
to open omnibar for commands, then input:
createSession works
Surfingkeys will create a session named works
for you, to open the session with command input as:
openSession works
To list all your saved sessions:
listSession
To delete a session:
deleteSession works
If you need repeat some action several times, just press a number before mapkey, such as 3d
, which will scroll down 3 pages. Repeats also works for Tab navigation, for example, you're now on the 1st Tab, and you want to switch to the 4th Tab,
3R
to achieve that3E
will switch back to 1st Tab.Another example to move one Tab, say, you're on the 12th Tab of 23 tabs.
11<<
will move current tab to beginning.10>>
will move current tab to end.Usually, you need not count the number, you just prefix a large number such as 99<<
, if you want to move a tab to beginning or end.
By default, Alt-s
will toggle Surfingkeys for current site. When Surfingkeys is turned off, all mappings stop working except the hotkey. To change hotkey, use settings below:
map('<Ctrl-i>', '<Alt-s>'); // hotkey must be one keystroke with/without modifier, it can not be a sequence of keystrokes like `gg`.
When Surfingkeys is turned off on some site by Alt-s
, the status will be persisted in settings, for example,
"blacklist": {
"https://github.com": 1
},
Alt-s
once more will remove it from settings.blacklist. By the way, yj
to dump all settings into clipboard.
Another way to disable Surfingkeys is to use settings.blacklistPattern
, please refer to regex for disabling.
SwitchySharp is a great extension to switch proxy, but my use case with it is very simple,
direct
and pac_script
.To avoid manually editing PAC script and reloading/switching profile by clicking SwitchySharp icon, I replaced SwitchySharp by integrating proxy settings into Surfingkeys, and provides related commands and shortcuts.
setProxy, to set proxy, some examples:
setProxy 192.168.1.100:8080
setProxy 127.0.0.1:1080 SOCKS5
setProxyMode, to set proxy mode, there are three modes: direct, byhost, always
direct Chrome will connect to all sites directly.
byhost Chrome will only connect to sites added by `addProxySite` through proxy.
always Chrome will connect to all sites through proxy.
system Use proxy configuration taken from the operating system.
clear Surfingkeys will take on control of proxy settings, this is the default mode.
addProxySite, removeProxySite, toggleProxySite, to make Chrome connect to site through proxy or not, examples:
addProxySite google.com,facebook.com,twitter.com
proxyInfo, to list proxy you set by setProxy
, proxy mode you set by setProxyMode
and sites you add/remove by addProxySite
/removeProxySite
/toggleProxySite
.
cp
, toggle proxy for current site.
spa
, shortcut for :setProxyMode always
spb
, shortcut for :setProxyMode byhost
spd
, shortcut for :setProxyMode direct
spi
, shortcut for :proxyInfo
Thanks ACE for the vim editor, Surfingkeys integrates ACE for the vim editor. The vim editor is used:
In normal mode, press capital I
, then use a hint letter to pick up a input box. A vim editor is opened for you to edit text. The vim editor is opened in lightly different way for input
and textarea
.
For input
element, the vim editor has only one line, you use vim-bindings keys to edit your text, then press Enter
or :w
to write your text back to the input element.
For textarea
element, the vim editor is opened in bigger size, after you complete your edit, then press Ctrl-Enter
or :w
to write your text back to the textarea element.
For select
element, the vim editor is opened in bigger size, you are expected to edit the text, instead of, to search your option and jump to the line, then press Enter
to select it. This is much handy for select
element that has dozens of options.
Esc
or :q
to quit vim editor without writing text back.
Tab
completion works with all words on current page, Space
to choose a match from popup.
If you enter insert mode with i
or mouse click, you will edit your input in normal way. You could also open vim editor at that time by pressing Ctrl-i
.
Remember that in insert mode, press Ctrl-i
to open vim editor.
su
to open vim editor to edit current URL, then Enter
or :w
to open the input URL, which works just like address bar with vim-binding keys.
Tab
completion works with all URLs from bookmark/history, Space
to choose a match from popup.
se
to open settings editor, :w
to save settings.
All keystrokes in normal mode are repeatable by dot, except those keystrokes mapped with repeatIgnore
as true
, for example,
mapkey('e', '#2Scroll a page up', 'Normal.scroll("pageUp")', {repeatIgnore: true});
Then .
will not repeat action to page up, even e
is just pressed.
sm
to open markdown preview, which will preview markdown from clipboard.sm
will open vim editor to edit markdown source.:wp
to refresh preview.r
to reload markdown source from clipboard.By default, Surfingkeys uses this markdown parser to preview markdown, if you'd like to use github markdown API to parse your markdown, please add below line to your settings:
settings.useLocalMarkdownAPI = false;
mapkey(keystroke, help_string, action_code, [options])
parameter | explanation |
---|---|
keystroke | string, any keystroke to trigger the action |
help_string | string, a help message to describe the action, which will displayed in help opened by u . |
action_code | string or function, action code can be a snippet of Javascript code or a Javascript function. |
options | object, properties listed below |
extra_chars | boolean[optional], whether the next key input is used as parameter of action_code, please see m or ' for example. |
domain | regex[optional], a Javascript regex pattern to identify the domains that this mapping works, for example, /github\.com/i says that this mapping works only for github.com. |
repeatIgnore | boolean[optional], whether this keystroke will be repeat by dot command. |
Just an example to map one keystroke to different functions on different sites,
mapkey('zz', 'Choose a tab', 'Normal.chooseTab()', {domain: /github\.com/i});
mapkey('zz', 'Show usage', 'Normal.showUsage()', {domain: /google\.com/i});
mapkey in visual mode
vmapkey(keystroke, help_string, action_code, [options])
map(new_keystroke, old_keystroke, [domain_pattern], [new_annotation])
parameter | explanation |
---|---|
new_keystroke | string, the new keystroke that will be used. |
old_keystroke | string, the existing keystroke that will be replaced, which means pressing it will not trigger any action. |
domain_pattern | regex[optional], a Javascript regex pattern to identify the domains that this mapping works. |
new_annotation | string[optional], use it instead of the annotation from old_keystroke if provided. |
unmap(keystroke, [domain_pattern])
parameter | explanation |
---|---|
keystroke | string, the existing keystroke that will be removed. |
domain_pattern | regex[optional], a Javascript regex pattern to identify the domains that this settings works. |
addSearchAlias(alias, prompt, search_url, suggestion_url, callback_to_parse_suggestion);
parameter | explanation |
---|---|
alias | one or several chars, used as search alias. When you input the string and press space in omnibar, it will switch to the related search engine. |
prompt | a string to tell you which search engine will be used for following search |
search_url | the URL for the search engine |
suggestion_url[optional] | omnibar will list out search suggestions from the engine, if you provide suggestion_url and callback_to_parse_suggestion |
callback_to_parse_suggestion[optional] | works with suggestion_url to provide search suggestion |
addSearchAliasX(alias, prompt, search_url, search_leader_key, suggestion_url, callback_to_parse_suggestion, only_this_site_key);
parameter | explanation |
---|---|
search_leader_key | one or several chars, used as search leader key, in case of that you would not like to use the default key s . |
only_this_site_key | one or several chars, used as only-this-site-key, in case of that you would not like to use the default key o . |
This version will create a mapping to search selected text with search_url
on pressing search_leader_key
followed by alias
, except that it adds search alias to omnibar as the normal version. For example, below line
addSearchAliasX('s', 'stackoverflow', 'http://stackoverflow.com/search?q=', 'o');
works like
addSearchAlias('s', 'stackoverflow', 'http://stackoverflow.com/search?q=');
mapkey('os', 'Search Selected with stackoverflow', 'searchSelectedWith("http://stackoverflow.com/search?q=")');
vmapkey('os', 'Search Selected with stackoverflow', 'searchSelectedWith("http://stackoverflow.com/search?q=")');
Omnibar.listWords(<array of words>)
Omnibar.html(<any html snippets>)
npm install
./node_modules/gulp/bin/gulp.js
MIT License