Gmail – How to Disable Suggestions

gmail

The new Gmail interface has suggestions visible in this image:
enter image description here

How can I turn them off?

Best Answer

As we saw, at the moment there isn't a builtin way for doing that.

You can go for other solutions:

  • Block the element with your ad blocker
  • Use a user script manager with a small script that will just remove the suggested replies.

    • You can use this:

      document.querySelector('div[aria-label*="Suggested reply"]').parentNode.remove()
      

      enter image description here