mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
34 lines
611 B
HTML
34 lines
611 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#controls {
|
|
border-bottom: solid 1px #ccc;
|
|
padding: 2px;
|
|
}
|
|
|
|
#log {
|
|
white-space: pre-wrap;
|
|
font-family: monospace;
|
|
padding: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="controls">
|
|
<button id="list-devices">List Serial Devices</button>
|
|
<button id="request-permission">Request "serial" permission</button>
|
|
<button id="check-permission">Check "serial" permission</button>
|
|
<script src="permissions.js"></script>
|
|
</div>
|
|
|
|
<div id="log"></div>
|
|
|
|
</body>
|
|
</html>
|