Display image md5s
当前为
// ==UserScript==
// @name 8chan-MD5
// @version 0.1
// @description Display image md5s
// @match *://8ch.net/*
// @grant none
// @namespace https://greasyfork.org/users/18941
// ==/UserScript==
$('.files .file').each(function() {
$(this).find('.fileinfo .unimportant').append(" MD5: " + $(this).find('.post-image').attr('data-md5'));
});