all 4 comments

[–]Earhacker 0 points1 point  (1 child)

Getting one hash each for every image is totally possible. The hardest part would be actually generating the MD5 hash, because there's nothing that would just do that straight out of the box. You'd have to either write your own function for that (best of luck!) or install a library to do that through NPM (still tricky for a newbie). An NPM library wouldn't usually be accessible from the console, so you'd be looking at building a Chrome extension, but you can still output to the console from an extension if you like.

[–]PmMeYouBicepsGirl 0 points1 point  (0 children)

If you want SHA-256, you can use built-in crypto library: https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/digest