mirror of
https://github.com/golang/go
synced 2024-11-12 09:00:22 -07:00
f4349f7368
R=rsc CC=golang-dev https://golang.org/cl/4560056
25 lines
507 B
HTML
25 lines
507 B
HTML
<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>
|
|
|