Lately, I've been using a handy extension called Stylish on Google Chrome to block those annoying ads and other unwanted elements from popping up. It's quite simple - all you need is the class name or id of the tag, and you can make it disappear when the website loads.
However, I stumbled upon an item that I also want to get rid of, but the problem is that it doesn't have an id, and the class name it shares with other similar items that I actually want to keep visible.
<li role="rowgroup" data-test-id="infinite-scroll-AD" class="p_a T_0 L_0 R_0" style="transform: translate3d(0px, 0px, 0px);"></li>
So, in this particular scenario, what I need to target is data-test-id="infinite-scroll-AD". How can I achieve this using Stylish or another compatible extension for the Google Chrome browser?