You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Webextension-polyfill is an API that helps us supports inconsistent APIs in extension to a rather generalized one!
Example: chrome.* are specific to chromium only, but according to W3C browser.* should be the preferred way, but chrome still doesn't support that! Although Safari and Firefox has first class support for them!
So, wanted to migrate our chome.* APIs to browser.* APIs. As they provide more clean and efficient APIs to work with, improving cross browser compatibility in general!
Webextension-polyfill is an API that helps us supports inconsistent APIs in extension to a rather generalized one!
Example:
chrome.*
are specific to chromium only, but according to W3Cbrowser.*
should be the preferred way, but chrome still doesn't support that! Although Safari and Firefox has first class support for them!So, wanted to migrate our chome.* APIs to browser.* APIs. As they provide more clean and efficient APIs to work with, improving cross browser compatibility in general!
For implementation notes, one can find this useful:
https://github.com/mozilla/webextension-polyfill
The text was updated successfully, but these errors were encountered: