tauri-remote-ui 1.0.1-alpha.3

A Tauri plugin that exposes the application’s UI to a web browser, allowing full interaction while the native app continues running. This enables frontend debug, end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.
<style>
    .remote-ui-heading {
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        color: #333;
        font-family: system-ui, -apple-system, sans-serif;
        text-align: center;
        padding: 20px;

        h1 {
            margin-bottom: 20px;
        }
    }

    .remote-ui-description {
        font-size: 16px;
        max-width: 600px;
        line-height: 1.5;
    }

    .remote-ui-connection-url {
        margin-top: 30px;
        padding: 10px 20px;
        background-color: #e6f7ff;
        border: 1px solid #91d5ff;
        border-radius: 4px;
    }

    .remote-ui-fotter {
        margin-top: 20px;
        font-size: 14px;
        opacity: 0.7;
    }
</style>
<div class="remote-ui-heading">

    <h1>Remote UI Session Active</h1>

    <p class="remote-ui-description">
        This application is currently being controlled via a remote connection UI.
    </p>

    <div class="remote-ui-connection-url">
        <p>Connection active at: <strong>%URL%</strong></p>
        <p>Information at: <strong>%URL_INFO%</strong></p>
    </div>

    <div class="remote-ui-fotter">
        Restart the application to resume normal operation. If this plugin is auto started please disable to use
        application normally.
    </div>
</div>