chrome omnibox如何在域上添加搜索

时间:2013-07-25 10:21:03

标签: google-chrome search omnibox

如何配置他的网站,让用户只使用omnibox搜索他的域名?

示例:

  • 键入youtube.com,然后按Tab键 enter image description here
  • 或输入yahoo.com然后按 enter image description here
  • 尝试使用vimeo无法正常工作

我在源代码中没有发现任何问题。

2 个答案:

答案 0 :(得分:2)

http://dev.chromium.org/tab-to-search有关于如何执行此操作的信息,可能您可以使用chrome插件强制页面具有所需的代码以实现此功能,但我不确定这样做会有多好。

答案 1 :(得分:2)

是的,这是可能的。 我为我的博客做了这个。

 <link rel="search" type="application/opensearchdescription+xml" title="The Sheng Blog" href="/resources/opensearch.php"/>

opensearch.php看起来像这样:

 <?xml version="1.0"?>
 <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
     <ShortName>The Sheng Blog (Beta)</ShortName>
     <Description>The Sheng Blog Search</Description>
     <Developer>Sheng Slogar</Developer>
     <LongName>Search the entire Sheng Blog</LongName>
     <InputEncoding>UTF-8</InputEncoding>
     <OutputEncoding>UTF-8</OutputEncoding>
     <Query role="example" searchTerms="code"/>
     <SyndicationRight>open</SyndicationRight>
     <AdultContent>false</AdultContent>
     <Language>en-us</Language>
     <Contact>contact@theshengblogg.comule.com</Contact>
     <Tags>code posts tutorials ideas playground</Tags>
     <Image width="16" height="16" type="image/x-icon">data:/ico;base64,AAABA...(Icon in base64)</Image>
     <Url type="text/html" template="http://theshengblogg.comule.com/search.php?s={searchTerms}"></Url>
     <Url type="application/x-suggestions+json" method="GET" template="http://theshengblogg.comule.com/autocomplete.php?search={searchTerms}&amp;json=true"/>
 </OpenSearchDescription>

我是从http://www.opensearch.org/Specifications/OpenSearch/1.1学到的。自动完成部分是可选的。以JSON格式返回。

例如,如果您搜索“a”,则返回[“a”,“about”,“across”,“all”,“and”]。 (注意我把你的查询作为第0项放在数组中。)

我的自动填充功能似乎只适用于Firefox。这可能与我的子域有关。 我也无法在IE或Chrome中使用它。