Skip to content

Instantly share code, notes, and snippets.

@sbimochan
Created April 16, 2021 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbimochan/dfc4c4560eadfc04780199d6905df111 to your computer and use it in GitHub Desktop.
Save sbimochan/dfc4c4560eadfc04780199d6905df111 to your computer and use it in GitHub Desktop.
Remove annoying banner from songsterr.com

A temporary workaround to remove the banner.

  • Fire up console. Right click-> click Inspect element-> Click console tab
  • Paste following
setInterval(()=> {
  let banner = document.getElementById('showroom');
  banner.remove();
},2000);
  • Close console.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment