您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
把阅读更多的那个啥玩意儿给干掉
// ==UserScript== // @name 去你大爷的 CSDN 全文阅读 // @namespace https://gqqnbig.me // @version 0.1 // @description 把阅读更多的那个啥玩意儿给干掉 // @author laobubu, gqqnbig // @match http://blog.csdn.net/*/article/details/* // @match https://blog.csdn.net/*/article/details/* // @grant none // @license LGPL-3.0-only // ==/UserScript== (function() { 'use strict'; var ef = document.querySelector('.hide-article-box'); if (ef) { ef.remove(); //document.querySelector('#article_content').style.height='auto'; } })();