Google ChromeOur coverage of productivity tips on Google Chrome continues. In this article, we shall see how to set a keyboard shortcut that will automate the steps of focusing the address bar, pasting the copied URL and hitting Go.

Keyboard shortcuts that the script provides:

  • Win+v – Pastes the URL (should have been already copied) in the address bar and hits return
  • Win+Alt+v – Opens a new tab, pastes the URL in the address bar and hits return

Instructions:

  1. Download AutoHotKey and install it.
  2. Save this small ChromePastenGo.ahk file (the contained code can be found at the bottom of this post) and place it anywhere in your computer. Double click this .ahk file.

That’s it! Next time you see a plain-text non-linked URL in Chrome or in any other program; simply copy it, switch to Chrome and press Win+v or Win+Alt+v.

The code:

; Relevant blog post: http://www.howtotuts.com/2008/09/07/how-to-paste-and-go-in-chrome-using-keyboard/
; Requested at: http://chromespot.com/index.php/topic,198.msg4744.html#msg4744
; Author: Sridhar Katakam
; ^ = Ctrl, ! = Alt, + = Shift, # = Win

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance force

#IfWinActive ahk_class Chrome_XPFrame
 #v:: Send !d^v{Enter}
 !#v:: Send ^t!d^v{Enter}
#IfWinActive

Note: This code is a part of How to set keyboard shortcuts in Chrome script.

We hope you found this how-to helpful. Please social bookmark this tutorial and help us and others. Thanks in advance.

Related posts:

  1. How to set keyboard shortcuts in Chrome
  2. How to switch tabs in Chrome by using the mouse wheel
  3. How to post to Twitter from Chrome
  4. How to accelerate bookmarking to delicious from Chrome
  5. How to search in google from any windows application easily

Related posts brought to you by Yet Another Related Posts Plugin.

Tags: ,

This post has 1 comment.

  1. [...] Update # 3: Added shortcuts for paste and go. Details here. [...]

Close
E-mail It