Home
Bio
Affiliaties
Foto
Mijn boeken
China, het daget inden oosten
Staatsinrichting en samenleving in China
Lezingen
Betrouwbaar Nieuws
English
Nederlands
中文
25.06.16
The crisis of futurelessness
25.06.08
Media, myth and manipulation: the West’s addiction to deception
25.06.06
From vision to ruin
25.06.01
Decoupled and undefeated
25.05.26
Another war
25.05.16
Learning from 1945: choose peace
更多
Home
Bio
Quotes
Affiliations
Photos
Books
China Het daget inden oosten
Statecraft & Society in China
Lectures
Reliable News
English
Nederlands
中文
index
›
文章标签 "Mensa"
The brain game kicked off
Meritocracy and intelligence levels will predominate the global economy and politics. T ...
2022-07-26
1,923
大家都在搜
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