Skip to content

Instantly share code, notes, and snippets.

@moeiscool
Created June 17, 2020 03:15
Show Gist options
  • Save moeiscool/4d94f727ef04b19ef940c49f9266d0a0 to your computer and use it in GitHub Desktop.
Save moeiscool/4d94f727ef04b19ef940c49f9266d0a0 to your computer and use it in GitHub Desktop.
Remove Forbes.com Anti-Ad-Blocker for CJS
// 1. get google chrome.
// 2. Install CJS (Allows running custom JavaScript on any website)
// 3. go to forbes.com and click CJS in the top right and paste the following code and save.
setTimeout(() => {console.log('hello');var element = document.querySelector('.fbs-auth__container'); element.parentNode.removeChild(element); document.querySelector('body').style = 'overflow:auto!important';},1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment