Skip to content

Commit ed4528a

Browse files
committed
Add help page
1 parent 5687cf9 commit ed4528a

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

Info.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@
1818
"file-system"
1919
],
2020
"allowedDomains": ["iina.io", "*.iina.io"],
21+
"helpPage": "help.html"
2122
}

help.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Document</title>
8+
<style>
9+
:root {
10+
color-scheme: light dark;
11+
}
12+
13+
body {
14+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
15+
font-size: 13px;
16+
padding: 0;
17+
margin: 0;
18+
}
19+
20+
#container {
21+
padding: 8px;
22+
}
23+
</style>
24+
</head>
25+
26+
<body>
27+
<div id="container">
28+
<p>
29+
IINA User Scripts work like those in browsers - they let you use the IINA plugin API to add and share
30+
desired
31+
functionalities without the hassle of creating a plugin package.
32+
</p>
33+
<p>
34+
Read the documentation at <code>https://docs.iina.io</code> to learn more about the IINA
35+
plugin API.
36+
</p>
37+
38+
</div>
39+
</body>
40+
41+
</html>

0 commit comments

Comments
 (0)