Show / hide which file types to be shown in file explorer

The solution is you make a custom css file to config which kind of file should appear.

div[data-path$='.png']{
	display: none;
}

You can read more in this question

2 Likes