Home
Bio
Affiliaties
Foto
Mijn boeken
China, het daget inden oosten
Staatsinrichting en samenleving in China
Lezingen
Betrouwbaar Nieuws
English
Nederlands
中文
25.07.08
Understanding China
25.07.06
Solving the Needham paradox
25.06.27
Beijing redefined the global rules of power
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
更多
Home
Bio
Quotes
Affiliations
Photos
Books
China Het daget inden oosten
Statecraft & Society in China
Lectures
Reliable News
English
Nederlands
中文
人气文章排行榜
like |
40
The 21st Century Trade Initiative between the USA and Taiwan.
like |
10
Welcome to my website
like |
6
Over the tipping point
like |
6
Leading the Peaceful Change of World Politics with the Theory of “Double Circulation”
like |
5
China’s overcapacity re-evaluated
like |
5
Strategy is mathematics
like |
5
Why there is no illegal immigration in China ?
like |
5
I don’t want to steal your baby
like |
4
Year of the Snake
like |
4
Fifty non-fiction books about China
like |
4
Global Civilization Initiative promotes the development and progress of human civilization.
like |
4
The future of technology is in China
like |
4
Beautiful Chinese libraries
like |
3
The Yin and Yang of traditional Chinese and Western healthcare
like |
3
Biden’s Credit and Punishment in his State of the Union
like |
3
It is your responsibility
like |
3
Chinese women
like |
3
Asia trip 2024, part 3
like |
3
My political and social viewpoints.
like |
3
The USA is paranoid about the BRICS
like |
3
Why there is no propaganda in China?
like |
2
The power behind the throne and the forever wars
like |
2
Decoupled and undefeated
like |
2
Solving the Needham paradox
like |
2
How China selects its governing elite
like |
2
Power shift
like |
2
The historical cycle of rise and fall of civilizations.
like |
2
Exploring views on China
like |
2
Defining communism: Perceptions and realities
like |
2
Banished for truth: the West’s political refugees
like |
2
Yellowlion now supports newsletters!
like |
2
The homecoming of Chinese scientists, a testament to China’s vision and global scientific leadership
like |
2
Asia trip 2024, part 1
like |
2
Chinese elections
like |
1
The brain game kicked off
like |
1
The troubled Americans
like |
1
Imperial decline.
like |
1
Above the law
like |
1
Media, myth and manipulation: the West’s addiction to deception
like |
1
Defining capitalism: Perceptions and realities
大家都在搜
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