-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp.html
41 lines (35 loc) · 992 Bytes
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
:root {
color-scheme: light dark;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 13px;
padding: 0;
margin: 0;
}
#container {
padding: 8px;
}
</style>
</head>
<body>
<div id="container">
<p>
IINA User Scripts work like those in browsers - they let you use the IINA plugin API to add and share
desired
functionalities without the hassle of creating a plugin package.
</p>
<p>
Read the documentation at <code>https://docs.iina.io</code> to learn more about the IINA
plugin API.
</p>
</div>
</body>
</html>