Skip to content

v0.1.0

Choose a tag to compare

@xvrh xvrh released this 17 Aug 20:05
· 18 commits to main since this release
79bcf4a
  • 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));
}