1
0
mirror of https://github.com/golang/go synced 2024-09-28 20:14:28 -06:00
go/misc/chrome/gophertool/background.html

25 lines
507 B
HTML
Raw Normal View History

<html>
<!--
Copyright 2011 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<head>
<script src="gopher.js"></script>
<script>
chrome.omnibox.onInputEntered.addListener(function(t) {
var url = urlForInput(t);
if (url) {
chrome.tabs.getSelected(null, function(tab) {
if (!tab) return;
chrome.tabs.update(tab.id, { "url": url, "selected": true });
});
}
});
</script>
</head>
</html>