Skip to content

Instantly share code, notes, and snippets.

@AmandaCameron
Created March 30, 2015 17:01
Show Gist options
  • Save AmandaCameron/b753e88e18d60014fda2 to your computer and use it in GitHub Desktop.
Save AmandaCameron/b753e88e18d60014fda2 to your computer and use it in GitHub Desktop.
package main
import (
"github.com/fabioberger/chrome"
)
func main() {
chrome.NewChrome().Omnibox.OnInputChanged(func(txt string, results func([]chrome.SuggestResult)) {
results([]chrome.SuggestResult{
{
Content: "Hello World",
Description: "Meow!",
},
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment