Firefox 无法从...安装搜索引擎
Firefox could not install the search engine from…
我正在尝试让 APLcart 与 OpenSearch 一起工作,但通过以下方式继续获得 Firefox could not install the search engine from: https://aplcart.info/opensearch.xml
:
<link rel="search" type="application/opensearchdescription+xml" title="APLcart"
href="/opensearch.xml">
其中 /opensearch.xml
是:
<OpenSearchDescription>
<ShortName>APLcart</ShortName>
<Description>
Search APLcart: A novel approach to finding your way in APL
</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">https://aplcart.info/favicon.ico</Image>
<Url type="text/html" template="https://aplcart.info/?q={searchTerms}"/>
</OpenSearchDescription>
- 请注意 this 不是同一个问题,因为我 有
Url type="text/html"
.
- 我试过
method="get"
我需要更改什么才能使我的 OpenSearch 规范符合要求?
您必须使用正确的命名空间
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
如果您打开浏览器控制台 (CTRL+Shift+J),您可以看到错误消息
Invalid search plugin due to namespace not matching.
我正在尝试让 APLcart 与 OpenSearch 一起工作,但通过以下方式继续获得 Firefox could not install the search engine from: https://aplcart.info/opensearch.xml
:
<link rel="search" type="application/opensearchdescription+xml" title="APLcart"
href="/opensearch.xml">
其中 /opensearch.xml
是:
<OpenSearchDescription>
<ShortName>APLcart</ShortName>
<Description>
Search APLcart: A novel approach to finding your way in APL
</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">https://aplcart.info/favicon.ico</Image>
<Url type="text/html" template="https://aplcart.info/?q={searchTerms}"/>
</OpenSearchDescription>
- 请注意 this 不是同一个问题,因为我 有
Url type="text/html"
. - 我试过
method="get"
我需要更改什么才能使我的 OpenSearch 规范符合要求?
您必须使用正确的命名空间
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
如果您打开浏览器控制台 (CTRL+Shift+J),您可以看到错误消息
Invalid search plugin due to namespace not matching.