返回首頁 

Greasy Fork is available in English.

自动展开CSDN博客隐藏内容

自动展开一些PC网站的隐藏内容;个人觉得手机端不需要做,故只在PC端有用;为了更好的上网体验,不兼容低版本浏览器和IE浏览器。大家如有发现类似需要手动点开隐藏内容的网站,请至以下网址反馈吧https://greasyfork.org/zh-CN/forum/discussion/72571/x

ของเมื่อวันที่ 15-03-2020 ดู เวอร์ชันล่าสุด

// ==UserScript==// @name         自动展开CSDN博客隐藏内容// @namespace    http://tampermonkey.net/// @version      0.0.5// @description  自动展开一些PC网站的隐藏内容;个人觉得手机端不需要做,故只在PC端有用;为了更好的上网体验,不兼容低版本浏览器和IE浏览器。大家如有发现类似需要手动点开隐藏内容的网站,请至以下网址反馈吧https://greasyfork.org/zh-CN/forum/discussion/72571/x// @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');})();