Releases: mingyaulee/WebExtensions.Net
Releases · mingyaulee/WebExtensions.Net
v0.2.1
- All API classes are renamed with suffix Api, including WebExtensionAPI which is renamed to WebExtensionApi, this will be breaking if you are using this package directly.
v0.2.0
- Function invocation on returned object is now supported.
- Added Storage API
- Added constants in Windows, Tabs, WebRequest API
- Added properties in Runtime API
v0.1.3
Include error message when throwing from JavaScript
Improved documentation
v0.1.2
- Set build configuration to Release to reduce output binary size
- Add package tags
- Refactor build properties
v0.1.1
Basic support for WebExtension API Interop
- Get primitive type result from API, e.g.
browser.runtime.getURL("")
returnsstring
- Get dynamic object result from API, e.g.
browser.runtime.getManifest()
returnsJsonElement
- Get strongly typed object result from API, e.g.
browser.runtime.getPlatformInfo()
returnsPlatformInfo