可能重复:
How to add google chrome omnibox-search support for your site?
我有一个关于如何为我自己的网站启用Google Chrome浏览器中的“按Tab键搜索”功能的问题。
我已经链接了一个opensearch.xml文档,并且包含以下内容:
<Url type="text/html" template="http://localhost:3000/?search={searchTerms}"/>
然而,这仍然无效。我做错了吗?
谢谢!
答案 0 :(得分:7)
以下是适用于我的opensearch.xml
示例:
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Example.com</ShortName>
<LongName>Example.com Search</LongName>
<Description>Search through Example.com</Description>
<Query role="example" searchTerms="example search"/>
<InputEncoding>UTF-8</InputEncoding>
<OutputEncoding>UTF-8</OutputEncoding>
<AdultContent>false</AdultContent>
<Language>en-us</Language>
<SyndicationRight>open</SyndicationRight>
<Developer>Example.com</Developer>
<Tags>tag1,tag2</Tags>
<Image height="16" width="16" type="image/vnd.microsoft.icon">http://example.com/favicon.ico</Image>
<Url type="text/html" template="http://example.com/search.html?q={searchTerms}"/>
<Url type="application/x-suggestions+json" template="http://example.com/suggestions.html?query={searchTerms}"/>
</OpenSearchDescription>
我认为localhost
和/或非标准端口3000
也可能导致问题。