hvplot.extension(inline=False) not working?

I’m trying to reduce changes to the notebook code by using inline=False to prevent putting the JS into the notebook.
The way I’m trying it is so:

import hvplot
hvplot.extension(inline=False)
import hvplot.xarray

but there’s still JS coming into the notebook doing this.

Is there a different way I have to approach this?

Or is what I see a minimal amount of JS that needs to be added to keep the plot “alive” in the notebook? How can I know?