您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
댓글 태그갑 문제 해결. 모바일 버전입니다.
// ==UserScript== // @name 일간베스트저장소 댓글 버그 핫픽스(모바일) // @description 댓글 태그갑 문제 해결. 모바일 버전입니다. // @include *://m.ilbe.com/* // @include *://www.ilbe.com/* // @grant none // @version 0.1T // @require http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // @namespace https://greasyfork.org/users/226807 // ==/UserScript== // 글목록 실시간 observe // 대상 node 선택 var asdasDocs = document.getElementsByClassName('post-comment')[0]; //now create our observer and get our target element var gamshiDocs = new MutationObserver(fnHandlerDocs), elTarget = asdasDocs, objConfig = { childList: true, subtree : true, attributes: false, characterData : false }; //then actually do some observing gamshiDocs.observe(elTarget, objConfig); function fnHandlerDocs () { $(".btn-report").remove(); console.log("test"); $(".comment-txt").css( "max-height", "700px" ); $(".comment-txt").css( "overflow", "hidden" ); } // 글목록 실시간 observe 끝!