chrome_extension 0.1.0 chrome_extension: ^0.1.0 copied to clipboard
A library for accessing the `chrome.*` APIs available in Chrome extensions.
0.1.0 #
- 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));
}