Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. javascript: (function() {
  2. var url = document.location;
  3. var meta = document.getElementsByTagName('meta');
  4. var found = 'Not Found';
  5. var title = document.title;
  6. var output = '';
  7. output = '\n\n##### Page Title #####\n\n' + title + '\n\n\n####META DATA####\n\n';
  8. if (meta.length > 0) {}
  9. for (i = 0; i < meta.length; i++) {
  10. if (meta[i].getAttribute('name') != null) {
  11. output += '\'' + meta[i].getAttribute('name') + '\'' + '\n' + meta[i].getAttribute('content') + '\n\n';
  12. } else if (meta[i].getAttribute('property') != null) {
  13. output += '\'' + meta[i].getAttribute('property') + '\'' + '\n' + meta[i].getAttribute('content') + '\n\n';
  14. }
  15. }
  16. alert(output)
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement