| <!DOCTYPE HTML> |
| <html lang="en"> |
| |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>Web App Internals</title> |
| <link rel="stylesheet" href="web_app_internals.css"> |
| |
| <script type="module" src="web_app_internals.js"></script> |
| </head> |
| |
| <body> |
| <button id="download-button">Download</button> |
| <button id="copy-button">Copy to Clipboard</button> |
| |
| <hr> |
| |
| <div id="iwa-div" style="display: none;"> |
| <h2>Isolated Web Apps</h2> |
| <div id="iwa-install-div" style="display: none;"> |
| <p>Install IWA via Dev Mode Proxy: |
| <input type="url" id="iwa-install-url" size="30" required |
| placeholder="http://localhost:8000/"> |
| <button id="iwa-install-button" type="submit">Install</button> |
| </p> |
| <p> |
| Install IWA from Signed Web Bundle: |
| <button id="iwa-select-bundle" type="submit">Select file...</button> |
| </p> |
| <div id="iwa-install-message-div"></div> |
| </div> |
| <h3>IWA Updates</h3> |
| <button id="iwa-search-for-updates"> |
| Discover updates of policy-installed IWAs now |
| </button> |
| <div id="iwa-update-discovery-message-div"></div> |
| <div id="iwa-dev-mode-updates" style="display: none;"></div> |
| <h4>Dev Mode App Updates</h4> |
| <ul id="iwa-dev-mode-app-list"> |
| </ul> |
| </div> |
| <hr> |
| </div> |
| |
| <pre id="json"></pre> |
| </body> |
| |
| </html> |