blob: 79ae05db4f711cee282960b9ef1a477b8339d276 (
plain)
1
2
3
4
5
6
7
8
9
|
chrome.omnibox.onInputEntered.addListener(function(t) {
var url = urlForInput(t);
if (url) {
chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) {
if (!tab) return;
chrome.tabs.update(tab.id, { "url": url, "selected": true });
});
}
});
|