12345678910111213141516171819 |
- <!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>
|