aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html9
1 files changed, 9 insertions, 0 deletions
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.
*/