π‘π‘π‘
Add a rule to hide the "People also search for" box by targeting its style.
If you're using uBlock origin, add the following custom CSS rule:
google.com##.AUiS2
Alternatively, if you have the Stylish extension (or similar), you can add the rule with:
.AUiS2 {
display: none !important;
}Please keep in mind that the target class name (AUiS2) might suddenly change and you'd need to update your custom rule β in that case, please comment in this gist and I'll update the rule π.
Disable the JavaScript code that runs/shows the "People also search for" box.
If you're using uBlock origin, add the following custom rule:
https://www.google.*/xjs/*
This is a very aggressive solution that seems to be working consistently, but also breaks the static "People also ask" box and other Google's search page result enhancements (e.g.: stock market, calculator, etc...).

Excellent, thank you.