比如 yy:复制当前网址 gs 查看当前网站源代码 hjkl: 对应vim 的方向键 等等 还有很多快捷键,你可以按下 ? 来查看 博主建议和chrome自带的快捷键结合。 比如用惯了chrome查找的ctrl + f 查找,不一定非得插件的 / , 用习惯了 方向键和 home end 到最上最下不一定得gg 和G
Navigating the current page:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
? show the help dialog for a list of all available keys h scroll left j scroll down k scroll up l scroll right gg scroll to top of the page G scroll to bottom of the page d scroll down half a page u scroll up half a page f open a link in the current tab F open a link in a new tab r reload gs view source i enter insert mode -- all commands will be ignored until you hit Esc to exit yy copy the current url to the clipboard yf copy a link url to the clipboard gf cycle forward to the next frame gF focus the main/top frame
Navigating to new pages:
1 2 3 4
o Open URL, bookmark, or history entry O Open URL, bookmark, history entry in a new tab b Open bookmark B Open bookmark in a new tab
Using find:
1 2 3 4
/ enter find mode -- type your search query and hit enter to search, or Esc to cancel n cycle forward to the next find match N cycle backward to the previous find match