Skip to content

Releases: xvrh/chrome_extension.dart

v0.3.1

13 May 15:36
Compare
Choose a tag to compare
  • Expose EventStream class.

v0.3.0

26 Feb 12:28
37a1b93
Compare
Choose a tag to compare
  • Regenerates the bindings based on Chrome v122
  • Updates JS binding for Dart 3.3
  • Requires Dart SDK >= 3.3

v0.2.0

16 Nov 08:48
7ce182e
Compare
Choose a tag to compare
  • Regenerate the bindings based on Chrome v116
  • Update JS binding for Dart 3.2
  • Require Dart SDK >= 3.2

v0.1.2

20 Sep 08:16
f34cb1e
Compare
Choose a tag to compare
  • Update the readme to give some tips on how to build Chrome extensions with Flutter.

v0.1.1

23 Aug 13:05
92d3cd7
Compare
Choose a tag to compare
  • Update the readme

v0.1.0

17 Aug 20:05
79bcf4a
Compare
Choose a tag to compare
  • Initial implementation of the binding for the chrome.* APIs
    Each API is in its own dart file and can be used like:
import 'package:chrome_extension/alarms.dart';

void main() async {
  await chrome.alarms.create('MyAlarm', AlarmCreateInfo(delayInMinutes: 2));
}