Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

Google Reader - show original in tab

Shows original Reader item in new tab

Allows the 't' key to open the original item in a tab.




Mar 25, 2008
bobielawlintine Scriptwright

Useful script, but you could also divert the popups open by Google Reader into tabs, that way you could use the built-in "v" button.

Open about:config and set:
browser.link.open_external -> 3
browser.link.open_newwindow -> 3
browser.link.open_newwindow.restriction -> 2

And just allow popups for google.com (when Firefox shows the blocked pop-up icon on the status bar)

 
Aug 24, 2007
engtech Scriptwright

Google Reader now has this functionality built in by hitting 'V'

 
Oct 5, 2006
Masayuki Ataka Scriptwright

I wrote a userscript for new Google Reader, based on Mark's script. It is available at http://greader.ja.googlepages.com/greader-show-...

NOTE: the shortcut key is changed to 'y' because 't' is reserved by Google Reader to 'Edit Tag'.

 
Feb 11, 2006
Mark Wilkinson User

I just ran into the problem with not being able to type 't' into a text field, so I've worked out a fix. I've updated my version of the code here.

 
Dec 29, 2005
Matt I User

Can the script check to make sure there aren't any text fields active when the 't' event fires to avoid opening tabs at the wrong times?

 
Dec 20, 2005
Kayhan Gultekin User

Now that it works, I found another bug. The script triggers when I am editing the labels of a particular feed. As I was typing "favorites" it opened up the post in a new tab and only had "favories" in the text entry box. Cutting and pasting a "t" is a usable workaround for now, though.

 
Dec 20, 2005
Kushal Dave Script's author

Thanks for the fixes! Latest version incorporates them.

 
Dec 19, 2005
Kayhan Gultekin User

Thanks. It works just right now. Now if only google reader had a "mark all as read" feature, I would be all set.

 
Dec 19, 2005
Mark Wilkinson User

Yeah, Reader's HTML changed at the end of last week so the script couldn't locate the link it needs to open. I've put a fixed version here.

 
Dec 17, 2005
Kayhan Gultekin User

This script was exactly what I wa looking for, but it doesn't work for me. Nothing at all happens when I press the "t" key. Is there something I'm missing? (FF 1.5, GM 0.6.4, WinXP SP2)

 
Dec 12, 2005
Mark Wilkinson User

Nice; I'd been looking for a way to open original items in tabs in the background. Minor problem in that the 't' key press was also activating find-as-you-type for me, which then captured all succeeding key presses. Simple fix is to add this:

try {
event.preventDefault();
} catch (e) {
}
return false;

after the call to GM_openInTab.

 
Dec 9, 2005
Kushal Dave Script's author

New version should fix ctrl-T. Sorry 'bout that!

 
Dec 8, 2005
slumos User

This messes up the usual use of Ctrl-T to open a new tab.

 
Nov 22, 2005
cigno5.5 Scriptwright

good work! simple but usefull!

You could comment on this script if you were logged in.