-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
42 lines (40 loc) · 1.05 KB
/
options.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
39
40
41
42
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<div>
<h2>Comment setting for preparation</h2>
</div>
<div>
<p>This function is used to play a predefined comment at a predetermined timing.</p>
<p>The key is the slide number</p>
<p>
When you transition to the target slide number, a `comment` message is automatically posted after `seconds` seconds of each line
</p>
<p>To use this feature, the extension must also Start on the screen where the audience posts comments in the User Tools</p>
</div>
<hr />
<div>Configuration Structure(e.g.)</div>
<pre>
<code>
{
"3": [
{"seconds": 0.5, "comment": "looks good"},
{"seconds": 1, "comment": "cooooooooooool!!!!"}
],
"4": [
{"seconds": 2, "comment": "wow"}
]
}
</code>
</pre>
<hr />
<div id="optionsList"></div>
<textarea cols="100" rows="20" id="sakura"></textarea>
<br />
<button class="save" id="save">Save</button>
</body>
<script src="options.js"></script>
</html>