OUR PUBLICATION NETWORK:
SYSTEM PROCESSING
Please Wait...

Anti AdBlock Killer Free



<script>

  function checkAdBlock() {

    const testUrl = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'; // URL yang sering diblokir oleh AdBlock

    // Buat permintaan untuk memeriksa apakah URL diblokir

    fetch(testUrl, { method: 'HEAD', mode: 'no-cors' })

      .then(() => {

        // Jika permintaan berhasil, AdBlock tidak aktif

        removeAdBlockMessage();

      })

      .catch(() => {

        // Jika permintaan gagal, AdBlock terdeteksi

        displayAdBlockMessage();

      });

  }

  // Fungsi untuk menampilkan pesan anti-AdBlock

  function displayAdBlockMessage() {

    // Cegah duplikasi pesan

    if (document.getElementById('adblockOverlay')) return;

    const overlay = document.createElement('div');

    overlay.id = 'adblockOverlay';

    overlay.style.position = 'fixed';

    overlay.style.top = '0';

    overlay.style.left = '0';

    overlay.style.width = '100%';

    overlay.style.height = '100%';

    overlay.style.backgroundColor = 'rgba(0, 0, 0, 0.9)';

    overlay.style.color = '#fff';

    overlay.style.zIndex = '9999';

    overlay.style.display = 'flex';

    overlay.style.flexDirection = 'column';

    overlay.style.alignItems = 'center';

    overlay.style.justifyContent = 'center';

    overlay.style.textAlign = 'center';

    overlay.innerHTML = `

      <div>

        <h1>AdBlock Detected!</h1>

        <p>The <strong><a target='blank'href="https://www.teknopays-reborn.com/">Teknopays Reborn&nbsp;</a></strong> website needs revenue from advertising to continue.</p>

        <p>Please disable your AdBlock and refresh this page.</p>

        <button id="refreshPage" style="padding: 10px 20px; background-color: #e74c3c; color: #fff; border: none; cursor: pointer; font-size: 16px; margin-top: 20px;">I have disabled AdBlock</button>

      </div>

    `;

    document.body.appendChild(overlay);

    // Tambahkan event listener pada tombol

    document.getElementById('refreshPage').addEventListener('click', () => {

      location.reload(); // Segarkan halaman untuk memeriksa status AdBlock lagi

    });

  }

  // Fungsi untuk menghapus pesan jika AdBlock tidak aktif

  function removeAdBlockMessage() {

    const overlay = document.getElementById('adblockOverlay');

    if (overlay) overlay.remove();

  }

  // Jalankan pemeriksaan AdBlock secara berkala

  document.addEventListener('DOMContentLoaded', () => {

    checkAdBlock(); // Periksa AdBlock saat halaman dimuat

    // Periksa AdBlock setiap 5 detik untuk mendeteksi perubahan status

    setInterval(checkAdBlock, 5000);

  });

</script>
VERIFYING LINK
Please Wait...
PREPARING DESTINATION
Please Wait...