<html style="max-width: 100%; max-height: 100%; overflow: hidden">
<body style="max-width: 100%; max-height: 100%; margin: 0">
// Get the URL and version number of JavaScript client
const params = new URLSearchParams(window.location.search);
const baseUrl = params.get("libBase");
const version = params.get("lib");
// Construct the URL of the JavaScript client
const libUrl = baseUrl + version + ".js";
// Load the JavaScript client
const lib = document.createElement("script");
// Load the JavaScript bundle for the extension
const extension = document.createElement("script");
extension.src = "main.js";
document.body.appendChild(extension);
document.head.appendChild(lib);