├── .gitignore ├── README.md ├── imagecapture ├── index.html ├── index.js └── styles.css ├── package.json ├── shapedetection ├── index.html ├── index.js ├── jedi.jpg ├── live │ ├── index.html │ └── index.js ├── styles.css └── trek │ ├── index.html │ └── trek.jpg ├── speechrecognition ├── index.html ├── index.js └── styles.css ├── speechsynthesis ├── index.html ├── index.js └── styles.css └── styles └── bootstrap.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/README.md -------------------------------------------------------------------------------- /imagecapture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/imagecapture/index.html -------------------------------------------------------------------------------- /imagecapture/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/imagecapture/index.js -------------------------------------------------------------------------------- /imagecapture/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/imagecapture/styles.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/package.json -------------------------------------------------------------------------------- /shapedetection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/index.html -------------------------------------------------------------------------------- /shapedetection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/index.js -------------------------------------------------------------------------------- /shapedetection/jedi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/jedi.jpg -------------------------------------------------------------------------------- /shapedetection/live/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/live/index.html -------------------------------------------------------------------------------- /shapedetection/live/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/live/index.js -------------------------------------------------------------------------------- /shapedetection/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/styles.css -------------------------------------------------------------------------------- /shapedetection/trek/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/trek/index.html -------------------------------------------------------------------------------- /shapedetection/trek/trek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/shapedetection/trek/trek.jpg -------------------------------------------------------------------------------- /speechrecognition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechrecognition/index.html -------------------------------------------------------------------------------- /speechrecognition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechrecognition/index.js -------------------------------------------------------------------------------- /speechrecognition/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechrecognition/styles.css -------------------------------------------------------------------------------- /speechsynthesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechsynthesis/index.html -------------------------------------------------------------------------------- /speechsynthesis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechsynthesis/index.js -------------------------------------------------------------------------------- /speechsynthesis/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/speechsynthesis/styles.css -------------------------------------------------------------------------------- /styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpedroribeiro/FunWithBrowserAPIs/HEAD/styles/bootstrap.css --------------------------------------------------------------------------------