Skip to content

Instantly share code, notes, and snippets.

@GabeDuarteM
Created December 25, 2019 22:43
Show Gist options
  • Select an option

  • Save GabeDuarteM/3da41af1fe4d4590a04762a09115166b to your computer and use it in GitHub Desktop.

Select an option

Save GabeDuarteM/3da41af1fe4d4590a04762a09115166b to your computer and use it in GitHub Desktop.
Displays all global variables created by the current page.
(() => {
const iframe = document.createElement('iframe')
iframe.style.display = 'none'
document.body.appendChild(iframe)
const currentWindow = Object.getOwnPropertyNames(window)
const results = currentWindow.filter(prop => !iframe.contentWindow.hasOwnProperty(prop))
console.log(results)
document.body.removeChild(iframe)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment