Yellowlion

  • Home
  • Bio
  • Affiliaties
  • Foto
  • Mijn boeken
    • China, het daget inden oosten
    • Staatsinrichting en samenleving in China
  • Lezingen
  • Betrouwbaar Nieuws
  • Nederlands
    • English
    • 中文
  • 25.06.28Beijing herschrijft de wereldwijde regels van de macht
  • 25.06.27De crisis van de toekomstloosheid
  • 25.06.14Media, mythe en manipulatie: de westerse verslaving aan misleiding
  • 25.04.18Europa’s STEM-crisis, een opzettelijke politieke sabotage, geen ongeluk.
  • 25.04.12Vrede, harmonie en geluk in China
  • 25.04.04De thuiskomst van Chinese wetenschappers, een bewijs van China’s visie en wereldwijd wetenschappelijk leiderschap
更多
  • Home
  • Bio
  • Affiliaties
  • Foto
  • Mijn boeken
    • China, het daget inden oosten
    • Staatsinrichting en samenleving in China
  • Lezingen
  • Betrouwbaar Nieuws
  • Nederlands
    • English
    • 中文

Mijn boeken

China, het daget inden oosten
Statecraft and Society in China

Copyright © 2025 Yellowlion

By downloading or in any way reproducing these files you accept all responsibility for meeting applicable copyright law.

大家都在搜

  • China
  • politics

My Wechat

微信公众号
// 1. List of EXACT field titles to remove (case-sensitive) const FIELDS_TO_NUKE = [ "Tags *", "Date", "Language", "Tag", "List", "Tag1", "Tag2", "Tag3" ]; // 2. MAIN REMOVAL FUNCTION (runs repeatedly until success) function nukeFieldsWithExtremePrejudice() { FIELDS_TO_NUKE.forEach(fieldTitle => { // Find ALL labels on page const labels = document.querySelectorAll('.mailpoet_form_field label'); labels.forEach(label => { // Check if label text MATCHES exactly (trim whitespace) if (label.textContent.trim() === fieldTitle) { // Remove the ENTIRE field group (label + hidden input) const fieldGroup = label.closest('.mailpoet_form_field'); if (fieldGroup) { fieldGroup.remove(); console.log('NUKED:', fieldTitle); // Debug log } } }); }); } // 3. RUN IT WITH OBSERVER + INTERVAL (catches dynamic loading) const observer = new MutationObserver(nukeFieldsWithExtremePrejudice); observer.observe(document.body, { childList: true, subtree: true }); // 4. Run every 500ms until fields are gone (safety net) const nukeInterval = setInterval(nukeFieldsWithExtremePrejudice, 500); // 5. Stop when fields are confirmed gone setTimeout(() => { if (document.querySelectorAll('.mailpoet_form_field').length === 0) { clearInterval(nukeInterval); observer.disconnect(); } }, 3000); // Stop after 3 seconds