您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
【csdn, 有用网】全文查看:破除 csdn,有用网 需要登录(不可用)或点一下才能查看的全文
// ==UserScript== // @name 【csdn, 有用网】全文查看 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 【csdn, 有用网】全文查看:破除 csdn,有用网 需要登录(不可用)或点一下才能查看的全文 // @include https://www.youyong.top/article* // @include https://blog.csdn.net/* // @include https://bbs.csdn.net/topics/* // @grant none // ==/UserScript== (function () { 'use strict'; var $content = document.getElementById('content'); var $showMore = document.querySelectorAll('.show-more-detail') || []; var $csdnContent = document.getElementById('article_content'); var $csdnMask = document.querySelectorAll('.hide-article-box') || []; var $csdnBbsCon = document.getElementById('bbs_detail_wrap'); var $csdnBbsMask = document.querySelectorAll('.hide_topic_box') || []; if ($csdnBbsCon) { $csdnBbsCon.setAttribute('style', ''); } if ($content) { $content.setAttribute('style', ''); } if ($csdnContent) { $csdnContent.setAttribute('style', ''); } if ($csdnMask && $csdnMask.length) { $csdnMask[0].style.display = 'none'; } if ($csdnBbsMask[0]) { $csdnBbsMask[0].style.display = 'none'; } if ($showMore[0]) { $showMore[0].style.display = 'none'; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址