You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
286 B
10 lines
286 B
4 months ago
|
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 });
|
||
|
});
|
||
|
}
|
||
|
});
|