mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
16 lines
342 B
HTML
16 lines
342 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Storage test</title>
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
<button id="request-quota">Request Quota</button>
|
|
<button id="query-quota">Query Quota</button>
|
|
<button id="request-filesystem">Request FileSystem and write file</button>
|
|
|
|
<pre id="log"></pre>
|
|
</body>
|
|
</html>
|