The browser extensions API is still an emerging standard . As a result, while it is supported by most major browsers including Firefox, Chrome, Edge, and Opera, there are differences between the various implementations. This means that some changes may be necessary to implement your extension for multiple browsers.
Among the various browsers supporting the extensions API, Firefox is the most compliant with the emerging standard, and is, therefore, your best place to start when developing browser extensions.
The differences between browsers’ extensions API implementations fall into four areas: namespace, asynchronous event handling, API coverage, and manifest keys.
You reference all extensions API functions using a namespace, for example,
browser.alarms.create({delayInMinutes});
would create an alarm in Firefox that goes off after the time specified in
delayInMinutes
.
There are two API namespaces in use:
chrome
used in Chrome and Opera.
浏览器
used in Firefox and Edge.
JavaScript provides several ways in which to handle asynchronous events. The proposed extensions API standard is to use promises. The promises approach provides significant advantages when dealing with chained asynchronous event calls.
If you are unfamiliar with how JavaScript can handle asynchronous events or promises, take a look at Getting to know asynchronous JavaScript: Callbacks, Promises and Async/Await or the MDN Using promises 页面。
Firefox is the only major browser that has implemented promises for the extensions API. All other browsers use callbacks.
The differences in the extensions API function implementations among the browsers fall into three broad categories:
privacy
函数。
notification
function method
onButtonClicked
, while Firefox is the only browser that supports
onShown
.
contextualIdentities
函数。
The differences in the supported
manifest.json
keys
among the browsers fall broadly into two categories:
developer
key enabling the addition of details about the developer of the extension, as well as the author, to be recorded.
命令
key (which enables shortcut keys to be defined for an extension).
You can find more detailed information about the differences in the supported browser extensions API features in:
最后修改: , 由 MDN 贡献者