您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
gives torrent description a scrollbar+set height, click inside to revert
当前为
// ==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.net/details.php?* // @exclude http*://forum.karagarga.net/* // @grant none // @version 1.1 // ==/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