github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/misc/chrome/gophertool/background.js (about) 1 chrome.omnibox.onInputEntered.addListener(function(t) { 2 var url = urlForInput(t); 3 if (url) { 4 chrome.tabs.getSelected(null, function(tab) { 5 if (!tab) return; 6 chrome.tabs.update(tab.id, { "url": url, "selected": true }); 7 }); 8 } 9 });