DirectTV Now added a FreeVIEW thing where you can watch some tv shows for free, but they don't show you only the shows that are available on "FreeVIEW", because that would be too convenient.
Luckily, they helpfully mark these subscriber only shows with a badge on the /watch/shows
endpoint.
Here's a bookmarklet to hide the subscriber only shows.
javascript:document.querySelectorAll("[data-label='SUBSCRIBE']").forEach( (el) => { el.parentNode.parentNode.parentNode.parentNode.style.display = 'none'; });
Pretty fragile and will probably break whenever they update the style of their site significantly, but should also be easy to fix assuming they keep the same general structure.