Guest User

Neocities Gravatar profile pic

a guest
Jul 30th, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.43 KB | Source Code | 0 0
  1. <script>
  2.     // Sets the profile pic from Gravatar to Neocities
  3.     const emailSha256hash = 'your email hashed to sha256'; // You can use https://emn178.github.io/online-tools/sha256.html
  4.     if (navigator.userAgent.includes('Screenjesus')) {
  5.         document.getElementsByTagName('body')[0].innerHTML = `<img style="height:100vh; width:100vw; object-fit: contain;" src="https://gravatar.com/avatar/${emailSha256hash}"/>`;
  6.     }
  7. </script>
Advertisement
Add Comment
Please, Sign In to add comment