Greasy Fork is available in English.
自动展开一些PC网站的隐藏内容;个人觉得手机端不需要做,故只在PC端有用;为了更好的上网体验,不兼容低版本浏览器和IE浏览器。大家如有发现类似需要手动点开隐藏内容的网站,请至以下网址反馈吧https://greasyfork.org/zh-CN/forum/post/discussion?script=397933&locale=zh-CN
ของเมื่อวันที่
// ==UserScript==// @name 自动展开CSDN博客隐藏内容// @namespace http://tampermonkey.net/// @version 0.0.4// @description 自动展开一些PC网站的隐藏内容;个人觉得手机端不需要做,故只在PC端有用;为了更好的上网体验,不兼容低版本浏览器和IE浏览器。大家如有发现类似需要手动点开隐藏内容的网站,请至以下网址反馈吧https://greasyfork.org/zh-CN/forum/post/discussion?script=397933&locale=zh-CN// @author You// @match *blog.csdn.net/*// @grant none// ==/UserScript==(function() {'use strict';function showFull(btn, lockDom){const $btn = document.querySelector(btn);$btn.addEventListener('life0001', function(){document.querySelector(lockDom).style=null;this.style.display='none';}, false);$btn.dispatchEvent(new Event('life0001'));};showFull('.btn-readmore', '#article_content');})();