Files
2024-08-27 01:25:36 +03:00

20 lines
486 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>File Associations</title>
</head>
<body>
<h1>File Associations</h1>
<pre id="files"></pre>
<script>
const filesView = document.getElementById('files')
filesView.textContent = window.openedFiles.join('\n')
</script>
</body>
</html>