🔧 کد Tracking (این کد رو قبل از </body> در سایت اصلی قرار بدید)
<script>
(function() {
var w = 'https://custom-waiting-room.chironet.workers.dev/api/track';
var p = location.pathname;
var t = document.title;
var r = document.referrer;
function track() {
var img = new Image();
img.src = w + '?p=' + encodeURIComponent(p) +
'&t=' + encodeURIComponent(t) +
'&r=' + encodeURIComponent(r) +
'&gif=1&_=' + Date.now();
}
track();
setInterval(track, 30000);
})();
</script>