search.get() 编辑
Gets an array of all installed search engines.
Each search engine returned is identified with a name, which you can pass into search.search()
to use that particular engine to make a search.
This is an asynchronous function that returns a Promise
.
Syntax
var gettingEngines = browser.search.get()
Parameters
None.
Return value
A Promise
that will be fulfilled with an array of search engine objects. Each search engine object may contain the following properties:
name
string
. The search engine's name.isDefault
boolean
.true
if the search engine is the default. Only one search engine can be the default at any given time.alias
Optionalstring
. If a search engine has an alias, the user can search with a particular search engine by entering the alias in address bar before the search term. For example, if the Wikipedia engine has an alias "wk", the user can search Wikipedia for pandas by entering "wk pandas" in the address bar. The alias is sometimes also called a "keyword".favIconUrl
Optionalstring
. The search engine's icon, as a data: URL.
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Examples
Get all installed search engines:
function retrieved(results) {
console.log(`There were: ${results.length} search engines retrieved.`);
for (let searchEngine of results) {
console.log(JSON.stringify(searchEngine.name));
}
}
browser.search.get().then(retrieved);
Example extensions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论