Greasy Fork is available in English.
虎扑引用楼层内容过长自动折叠,避免长图长文影响阅读
当前为
// ==UserScript==
// @name 虎扑引用楼层内容过长自动折叠
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 虎扑引用楼层内容过长自动折叠,避免长图长文影响阅读
// @author zerozz
// @match https://bbs.hupu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var bqEleArr = document.getElementsByTagName("blockquote") || [];
var size = bqEleArr.length;
for (var i = 0; i < size; i++) {
var bqEle = bqEleArr[i];
bqEle.style.cssText='max-height: 100px; overflow: hidden; transition: max-height 2s ease 0s;';
}
})();