-
Notifications
You must be signed in to change notification settings - Fork 459
/
history.html
38 lines (37 loc) · 936 Bytes
/
history.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<!--
* Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this
* source code is governed by a BSD-style license that can be found in the
* LICENSE file.
-->
<html>
<head>
<style>
body {
width: 100%;
font: 13px Arial;
}
</style>
<script src="history.js"></script>
</head>
<body>
<h1>Idle API Demonstration</h1>
<h2>Current state</h2>
<p>
Idle threshold:
<select id="idle-threshold">
<option selected value="15">15</option>
<option value="30">30</option>
<option value="60">60</option>
</select>
<p>
<code>chrome.idle.queryState(<strong id="idle-set-threshold"></strong>, ...);</code> -
<span id="idle-state"></span>
</p>
<p>
Last state change: <span id="idle-laststate"></span>
</p>
<h2>Idle changes:</h2>
<ul id='idle-history'></ul>
</body>
</html>