Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name YP小站_自动展开全文
// @match https://www.yp14.cn/*
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author lgyh Z
// @grant none
// @connect yp14.cn
// ==/UserScript==
(function() {
'use strict';
document.getElementById('container').style='position: relative;height: auto;';
var tmp = document.getElementById('read-more-mask');
var parent = tmp.parentElement;
var removed = parent.removeChild(tmp);
parent.removeChild(parent.children[0])
removed === tmp;
})();