啊Q
页眉JS
<script>
(function() {
const injectInviteLink = () => {
const target = document.querySelector('.FoF-Terms-SignUp-Legal');
if (target && !target.querySelector('.injected-link')) {
target.innerHTML = '还没有邀请码?<a href="https://地址/" target="_blank" class="injected-link" style="color: #b08d1a !important; text-decoration: underline !important; font-weight: bold !important; margin-left: 5px;">点此获取</a>';
target.style.display = 'block';
}
};
document.addEventListener('click', () => setTimeout(injectInviteLink, 300));
setInterval(injectInviteLink, 1000);
})();
</script>