-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ | |
"file-system" | ||
], | ||
"allowedDomains": ["iina.io", "*.iina.io"], | ||
"helpPage": "help.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |