Skip to content

Instantly share code, notes, and snippets.

@imteekay
Last active February 14, 2021 13:07
Show Gist options
  • Save imteekay/4b6269619618d553f6715b00a7dbc695 to your computer and use it in GitHub Desktop.
Save imteekay/4b6269619618d553f6715b00a7dbc695 to your computer and use it in GitHub Desktop.
Remove entertainment and sports from globo page
const entertainmentTrash = document.querySelectorAll('[data-tracking-action="entretenimento"]');
const sportsTrash = document.querySelectorAll('[data-tracking-action="esporte"]')
const trash = [...entertainmentTrash, ...sportsTrash];
trash.forEach(t => t.remove());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment