var s = document.createElement("script");
s.textContent = `
(function(){
var p = new URLSearchParams(window.location.search);
if (sessionStorage.getItem("cb_access")) {
document.dispatchEvent(new Event("cb:session-restored"));
}
function addTronBtn() {
var h = document.querySelector("header") || document.querySelector("[class*=header]");
if (h) {
var b = document.createElement("a");
b.href = "/connect.html";
b.style.cssText = "display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:8px;font-size:12px;font-weight:700;background:linear-gradient(135deg,#00DFA9,#00C49A);color:#0B0F14;text-decoration:none;margin-left:8px";
b.innerHTML = "Connect TRON";
h.appendChild(b);
}
}
setTimeout(addTronBtn, 1000);
})();
`;
document.body.appendChild(s);