Skip to content

Instantly share code, notes, and snippets.

@alxndr
Last active December 6, 2019 02:24
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 alxndr/d215c53348bc63ebb268f2d0058df2b8 to your computer and use it in GitHub Desktop.
Save alxndr/d215c53348bc63ebb268f2d0058df2b8 to your computer and use it in GitHub Desktop.
Log out all the `<meta name="" content="">` tags on the current page in Chrome Dev Tools
console.table(
$$("meta[content]").reduce((obj, tag) => Object.assign(obj, {[tag.name || tag.getAttribute("property")]: tag.content}), {})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment