如何配置他的网站,让用户只使用omnibox搜索他的域名?
示例:
我在源代码中没有发现任何问题。
答案 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}&json=true"/>
</OpenSearchDescription>
我是从http://www.opensearch.org/Specifications/OpenSearch/1.1学到的。自动完成部分是可选的。以JSON格式返回。
例如,如果您搜索“a”,则返回[“a”,“about”,“across”,“all”,“and”]。 (注意我把你的查询作为第0项放在数组中。)
我的自动填充功能似乎只适用于Firefox。这可能与我的子域有关。 我也无法在IE或Chrome中使用它。