Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Created October 8, 2022 06:41
Show Gist options
  • Save mimonelu/946d6c1759c061945e77e87a42ac50e4 to your computer and use it in GitHub Desktop.
Save mimonelu/946d6c1759c061945e77e87a42ac50e4 to your computer and use it in GitHub Desktop.
Bookmarklet dIsplays global properties
javascript: (() => { const w = window.open(); const k = Object.keys(w); w.close(); const m = new Map(Object.keys(window).filter(p => !k.includes(p)).map(p => [p, window[p]])); console.info('🌏 Global properties', Object.fromEntries(m)); })(); void 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment