├── .gitignore ├── LICENSE ├── README.md ├── camera-capture ├── README.md ├── pubspec.yaml ├── screenshot.png └── web │ ├── background.js │ ├── camera.png │ ├── camera_capture.css │ ├── camera_capture.dart │ ├── camera_capture.html │ └── manifest.json ├── chrome-app-with-polymer-dart ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.dart ├── lib │ ├── main_app.dart │ └── main_app.html ├── pubspec.yaml └── web │ ├── apple-touch-icon-precomposed.png │ ├── background.js │ ├── favicon.ico │ ├── images │ └── touch │ │ ├── chrome-touch-icon-192x192.png │ │ └── ms-touch-icon-144x144-precomposed.png │ ├── index.html │ ├── manifest.json │ ├── robots.txt │ └── styles.css ├── context-menu ├── README.md ├── pubspec.yaml ├── screenshot.png └── web │ ├── a.dart │ ├── a.html │ ├── b.dart │ ├── b.html │ ├── background.js │ ├── common.dart │ ├── context_menu.css │ ├── dart_icon.png │ └── manifest.json ├── desktop-capture ├── README.md ├── pubspec.yaml ├── screenshot.png └── web │ ├── background.js │ ├── desktop.png │ ├── desktop_capture.css │ ├── desktop_capture.dart │ ├── desktop_capture.html │ └── manifest.json ├── filesystem-access ├── README.md ├── pubspec.yaml ├── screenshot.png └── web │ ├── background.js │ ├── dart_icon.png │ ├── dnd.dart │ ├── filesystem_access.css │ ├── filesystem_access.dart │ ├── filesystem_access.html │ └── manifest.json ├── media-gallery ├── README.md ├── pubspec.yaml ├── screenshot.png └── web │ ├── background.js │ ├── manifest.json │ ├── mediagallery.css │ ├── mediagallery.dart │ ├── mediagallery.html │ └── mga-128color.png └── windows ├── README.md ├── pubspec.yaml ├── screenshot.png └── web ├── background.js ├── copycat.dart ├── copycat.html ├── img ├── copycat.png └── original.png ├── manifest.json ├── original.dart ├── original.html ├── script └── update.dart └── styles └── windows.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/README.md -------------------------------------------------------------------------------- /camera-capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/README.md -------------------------------------------------------------------------------- /camera-capture/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/pubspec.yaml -------------------------------------------------------------------------------- /camera-capture/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/screenshot.png -------------------------------------------------------------------------------- /camera-capture/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/background.js -------------------------------------------------------------------------------- /camera-capture/web/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/camera.png -------------------------------------------------------------------------------- /camera-capture/web/camera_capture.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/camera_capture.css -------------------------------------------------------------------------------- /camera-capture/web/camera_capture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/camera_capture.dart -------------------------------------------------------------------------------- /camera-capture/web/camera_capture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/camera_capture.html -------------------------------------------------------------------------------- /camera-capture/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/camera-capture/web/manifest.json -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/CHANGELOG.md -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/LICENSE -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/README.md -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/build.dart -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/lib/main_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/lib/main_app.dart -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/lib/main_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/lib/main_app.html -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/pubspec.yaml -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/background.js -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/favicon.ico -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/images/touch/chrome-touch-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/images/touch/chrome-touch-icon-192x192.png -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/images/touch/ms-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/images/touch/ms-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/index.html -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/manifest.json -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/robots.txt -------------------------------------------------------------------------------- /chrome-app-with-polymer-dart/web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/chrome-app-with-polymer-dart/web/styles.css -------------------------------------------------------------------------------- /context-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/README.md -------------------------------------------------------------------------------- /context-menu/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/pubspec.yaml -------------------------------------------------------------------------------- /context-menu/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/screenshot.png -------------------------------------------------------------------------------- /context-menu/web/a.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/a.dart -------------------------------------------------------------------------------- /context-menu/web/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/a.html -------------------------------------------------------------------------------- /context-menu/web/b.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/b.dart -------------------------------------------------------------------------------- /context-menu/web/b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/b.html -------------------------------------------------------------------------------- /context-menu/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/background.js -------------------------------------------------------------------------------- /context-menu/web/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/common.dart -------------------------------------------------------------------------------- /context-menu/web/context_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/context_menu.css -------------------------------------------------------------------------------- /context-menu/web/dart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/dart_icon.png -------------------------------------------------------------------------------- /context-menu/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/context-menu/web/manifest.json -------------------------------------------------------------------------------- /desktop-capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/README.md -------------------------------------------------------------------------------- /desktop-capture/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/pubspec.yaml -------------------------------------------------------------------------------- /desktop-capture/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/screenshot.png -------------------------------------------------------------------------------- /desktop-capture/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/background.js -------------------------------------------------------------------------------- /desktop-capture/web/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/desktop.png -------------------------------------------------------------------------------- /desktop-capture/web/desktop_capture.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/desktop_capture.css -------------------------------------------------------------------------------- /desktop-capture/web/desktop_capture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/desktop_capture.dart -------------------------------------------------------------------------------- /desktop-capture/web/desktop_capture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/desktop_capture.html -------------------------------------------------------------------------------- /desktop-capture/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/desktop-capture/web/manifest.json -------------------------------------------------------------------------------- /filesystem-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/README.md -------------------------------------------------------------------------------- /filesystem-access/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/pubspec.yaml -------------------------------------------------------------------------------- /filesystem-access/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/screenshot.png -------------------------------------------------------------------------------- /filesystem-access/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/background.js -------------------------------------------------------------------------------- /filesystem-access/web/dart_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/dart_icon.png -------------------------------------------------------------------------------- /filesystem-access/web/dnd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/dnd.dart -------------------------------------------------------------------------------- /filesystem-access/web/filesystem_access.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/filesystem_access.css -------------------------------------------------------------------------------- /filesystem-access/web/filesystem_access.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/filesystem_access.dart -------------------------------------------------------------------------------- /filesystem-access/web/filesystem_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/filesystem_access.html -------------------------------------------------------------------------------- /filesystem-access/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/filesystem-access/web/manifest.json -------------------------------------------------------------------------------- /media-gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/README.md -------------------------------------------------------------------------------- /media-gallery/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/pubspec.yaml -------------------------------------------------------------------------------- /media-gallery/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/screenshot.png -------------------------------------------------------------------------------- /media-gallery/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/background.js -------------------------------------------------------------------------------- /media-gallery/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/manifest.json -------------------------------------------------------------------------------- /media-gallery/web/mediagallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/mediagallery.css -------------------------------------------------------------------------------- /media-gallery/web/mediagallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/mediagallery.dart -------------------------------------------------------------------------------- /media-gallery/web/mediagallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/mediagallery.html -------------------------------------------------------------------------------- /media-gallery/web/mga-128color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/media-gallery/web/mga-128color.png -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/pubspec.yaml -------------------------------------------------------------------------------- /windows/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/screenshot.png -------------------------------------------------------------------------------- /windows/web/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/background.js -------------------------------------------------------------------------------- /windows/web/copycat.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/copycat.dart -------------------------------------------------------------------------------- /windows/web/copycat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/copycat.html -------------------------------------------------------------------------------- /windows/web/img/copycat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/img/copycat.png -------------------------------------------------------------------------------- /windows/web/img/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/img/original.png -------------------------------------------------------------------------------- /windows/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/manifest.json -------------------------------------------------------------------------------- /windows/web/original.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/original.dart -------------------------------------------------------------------------------- /windows/web/original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/original.html -------------------------------------------------------------------------------- /windows/web/script/update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/script/update.dart -------------------------------------------------------------------------------- /windows/web/styles/windows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-gde/dart-chrome-app-samples/HEAD/windows/web/styles/windows.css --------------------------------------------------------------------------------