Skip to content

Provide Dart interop with chrome.* APIs for Chrome Packaged Apps

Notifications You must be signed in to change notification settings

NazarKalytiuk/chrome.dart

Repository files navigation

A library for Dart developers.

Usage

A simple usage example:

import 'package:chrome/chrome.dart';

main() {
  chrome.tabs.query(
    queryInfo: QueryInfoJs(active: true),
    callback: (tabs) {
      print(tabs[0].id);
    },
  );
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

Checklist

  • accessibilityFeatures
  • alarms
  • bookmarks
  • browserAction
  • browsingData
  • certificateProvider
  • commands
  • contentSettings
  • contextMenus
  • cookies
  • debugger
  • declarativeContent
  • desktopCapture
  • devtools
  • documentScan
  • downloads
  • enterprise
  • events
  • extension
  • extensionTypes
  • fileBrowserHandler
  • fileSystemProvider
  • fontSettings
  • gcm
  • history
  • i18n
  • identity
  • idle
  • input.ime
  • instanceID
  • loginState
  • management
  • networking.config
  • notifications
  • omnibox
  • pageAction
  • pageCapture
  • permissions
  • platformKeys
  • power
  • printerProvider
  • printing
  • printingMetrics
  • privacy
  • proxy
  • runtime
  • sessions
  • storage
  • system
  • tabCapture
  • tabs
  • topSites
  • tts
  • ttsEngine
  • types
  • vpnProvider
  • wallpaper
  • webNavigation
  • webRequest
  • windows

About

Provide Dart interop with chrome.* APIs for Chrome Packaged Apps

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages