Skip to content

Instantly share code, notes, and snippets.

@jasonseney
Last active May 20, 2021 01:39
Show Gist options
  • Save jasonseney/a0d01ffc43fae07f61b826fdee753933 to your computer and use it in GitHub Desktop.
Save jasonseney/a0d01ffc43fae07f61b826fdee753933 to your computer and use it in GitHub Desktop.
Displays a dialog showing the page title, description, and URL.
var metaDescription = document.querySelector('meta[name="description"]') || document.querySelector('meta[property="og:description"]');
var summary = [
document.title,
metaDescription ? metaDescription['content'] : '',
document.location.href
].join('\n\n');
alert(summary);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment