From a59875bbfd8182c64f3e1673ec1546b751e462b5 Mon Sep 17 00:00:00 2001 From: Julian Naydichev Date: Tue, 28 Dec 2010 20:13:53 -0800 Subject: Made is so that viewing source opens in the next tab, instead of replacing the current tab. --- background_page.html | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'background_page.html') diff --git a/background_page.html b/background_page.html index 264cf299..29dce3c7 100644 --- a/background_page.html +++ b/background_page.html @@ -70,6 +70,7 @@ var sendRequestHandlers = { getCompletionKeys: getCompletionKeys, getLinkHintCss: getLinkHintCss, + toggleViewSourceNewTab: toggleViewSourceNewTab, openUrlInCurrentTab: openUrlInCurrentTab, openOptionsPageInNewTab: openOptionsPageInNewTab, registerFrame: registerFrame, @@ -237,6 +238,14 @@ }); } + /** toggleViewSourceNewTab, opens source in new tab and switches to it + * + */ + function toggleViewSourceNewTab(request) { + chrome.tabs.getSelected(null, function(tab) { + chrome.tabs.create({ url: request.url, index: tab.index + 1, selected: true }); + }); + } /* * Returns the core CSS used for link hints, along with any user-provided overrides. */ -- cgit v1.2.3