How one configure his web site to let users search only on his domain using omnibox?
Example:
- type youtube.com then press tab
- or type yahoo.com then press
- trying with vimeo wouldn't work
I didn't find anyhing in the source code.
How one configure his web site to let users search only on his domain using omnibox?
Example:
I didn't find anyhing in the source code.
http://dev.chromium.org/tab-to-search has the information on how to do it, potentially you could use a chrome addon to force the page to have the needed code for this to function, but I'm not sure how well such would work.
Yes it's possible. I did this for my blog.
opensearch.php looks likes this:
I learned this from http://www.opensearch.org/Specifications/OpenSearch/1.1. The autocomplete part is optional. Return it in JSON format.
For example, if you search "a", return ["a","about","across","all","and"]. (Notice I put your query in the array as item 0.)
My autocomplete only seems to work in Firefox. This might be something with my sub domain. I also couldn't get it to work in IE or Chrome.