// ==UserScript== // @name KG - less page jumps while images load // @description gives torrent description a scrollbar+set height, click inside to revert // @namespace KG // @include http*://*karagarga.in/details.php?* // @exclude http*://forum.karagarga.in/* // @grant none // @version 1.2 // @downloadURL https://update.greasyfork.icu/scripts/756/KG%20-%20less%20page%20jumps%20while%20images%20load.user.js // @updateURL https://update.greasyfork.icu/scripts/756/KG%20-%20less%20page%20jumps%20while%20images%20load.meta.js // ==/UserScript== if (!window.frameElement) { var d = document.getElementsByTagName("article")[0]; d.style.width='650px'; d.style.height='650px'; d.style.overflow='auto'; d.setAttribute("onclick", "javascript:this.style.width=''; this.style.height=''; this.style.overflow='';"); } // end iframe check