github.com/MangoDowner/go-gm@v0.0.0-20180818020936-8baa2bd4408c/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  });