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>Tauri Remote UI Plugin</h1>

    <p class="remote-ui-description">
        Checkout github repo. <a href="https://github.com/DraviaVemal/tauri-remote-ui"
            target="_blank">https://github.com/DraviaVemal/tauri-remote-ui</a>
    </p>

    <div class="remote-ui-connection-url">
        <p>Plugin Version : <strong>%PLUGIN_VERSION%</strong></p>
        <p>Application Version : <strong>%APP_VESION%</strong></p>
        <p>Origin Scope : <strong>%ORIGIN_SCOPE%</strong></p>
        <p>Port : <strong>%PORT%</strong></p>
    </div>

    <div class="remote-ui-fotter">
        Contribute to keep the project growing and maintainers empowered.
    </div>
</div>