15 lines
294 B
HTML
15 lines
294 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Chrome App</title>
|
|
</head>
|
|
<body>
|
|
<h1>Chrome App Test</h1>
|
|
<p>If you see this, the Chrome App loaded successfully!</p>
|
|
<p>Check the console for TCP server status.</p>
|
|
<script>
|
|
console.log('App window loaded');
|
|
</script>
|
|
</body>
|
|
</html>
|