8chan-MD5

Display image md5s

As of 2015-10-26. See the latest version.

// ==UserScript==
// @name         8chan-MD5
// @version      0.1
// @description  Display image md5s
// @author       Anonymous
// @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'));
});