mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
38 lines
595 B
HTML
38 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>System Information</title>
|
|
<script src="systemInfo.js"></script>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
margin: 0 auto;
|
|
overflow: scroll;
|
|
}
|
|
td {
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>Display Information</h2>
|
|
<div id="display-list">
|
|
<i> Loading ...</i>
|
|
</div>
|
|
<h2>CPU Information</h2>
|
|
<div id="cpu-info">
|
|
<i> Loading ...</i>
|
|
</div>
|
|
<h2>Memory Information</h2>
|
|
<div id="memory-info">
|
|
<i>Loading...</i>
|
|
</div>
|
|
<h2>Storage Information</h2>
|
|
<div id="storage-list">
|
|
<i>Loading ...</i>
|
|
</div>
|
|
</body>
|
|
</html>
|