我試圖創建一個Firefox 57+兼容附加包含下面的代碼(即,基於WebExtensions附加的):是否有與WebExtensions的nsIBrowserSearchService等效的功能?
// Import the Services module.
Components.utils.import("resource://gre/modules/Services.jsm");
var bss = Services.search; // browser search service
bss.init();
var searchEngines = bss.getVisibleEngines({});
只有獲悉you can't import Services using the WebExtensions API。
所以,我想知道是否有一種使用WebExtensions API的等效方式能夠訪問瀏覽器的搜索欄搜索引擎(與Firefox 57+兼容並且不會與Firefox 56兼容)。
產品/重複:[添加上下文菜單中的書籤米enu of Firefox](https://stackoverflow.com/a/44351539) – Makyen