NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TurboImageHost click pic to enlarge // @description Clicking images on TurboImageHost enlarges them rather than going to the home page // @include http://www.turboimagehost.com/p/* // @grant none // @version 4 // ==/UserScript== document.getElementById('imageid').parentNode.addEventListener('click', function (event) { event.preventDefault(); event.stopPropagation(); OC(); });