mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
19 lines
241 B
HTML
19 lines
241 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0 auto;
|
|
}
|
|
video {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="camera.js"></script>
|
|
<video autoplay></video>
|
|
</body>
|
|
</html>
|