// ==UserScript== // @name KDS // @description KDS utilities // @namespace https://greasyfork.org/users/11909 // @include http://club.pchome.net/forum* // @version 2015.11.08.02 // @grant none // @downloadURL none // ==/UserScript== ;(function (window, document) { function showImage() { var imgs = document.querySelectorAll('.n3>a[rel]'); var length = imgs.length; for (var i = 0; i < length; i++) { (function() { var img = imgs[i]; img.parentNode.querySelector('img').onclick = function() { window.open(img.rel.replace('_128x128.', '.')); } }()); } } showImage(); }(window, document));