Files
auto-caption/src/renderer/index.html
himeditator 3324b630d1 feat(app): 适配最新版本
- 修改软件内部分提示文本
- 添加 API KEY 掩码,防止直接输出 API KEY 内容
2026-01-10 20:15:32 +08:00

18 lines
455 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Auto Caption v1.1.0</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>