NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name no more thumbnail // @namespace // @include http://www.18p2p.com/forum/viewthread.php* // @include http://www.18board.com/forum/viewthread.php* // @include http://www.18board.com//forum/viewthread.php* // @description no thumbnail image // @version 1.3.6 // @grant none // @license MIT // ==/UserScript== // supported site: var imgs=document.getElementsByTagName("img"), i=0, img; var pattern = /^http\:\/\/https(.*)\.th\.jpg$/; while (img = imgs[i++]) { if (img.src.match(pattern)) { img.src = img.src.replace(pattern, 'https:$1.jpg'); } }