平时,我们学(chao)习(xi)的时候,经常看到CSDN博客中有很多有用的资料,但是有很多限制,例如:登录复制及关注阅读全文。
怎么破解这些限制呢?我自己用JS写了一个油猴脚本可以解决这个问题。
第一步:安装油猴插件
这一步我就不说了,度娘一搜一大堆。
第二步:复制JS脚本
点击浏览器右上角的拼图图标,再点击油猴图标,点击添加新脚本,复制以下内容替换其中的内容:
// ==UserScript==
// @name 破解CSDN博客复制和关注阅读全文-Ctrl+X-阿裴搞数码
// @namespace http://tampermonkey.net/
// @version 2024-08-16
// @description try to take over the world!
// @author You
// @match *://blog.csdn.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
javascript:document.body.contentEditable='true';document.designMode='on'; void 0
var article_content=document.getElementById("article_content");
article_content.removeAttribute("style");var follow_text=document.getElementsByClassName('follow-text')[0];
follow_text.parentElement.parentElement.removeChild(follow_text.parentElement);
var hide_article_box=document.getElementsByClassName(' hide-article-box')[0];
hide_article_box.parentElement.removeChild(hide_article_box);
// Your code here...
})();
点击右上角“文件”保存即可,下次进入CSDN就不会有关注阅读限制,要复制请按Ctrl+X。
原作者:阿裴搞数码
原文链接:apgsmboke.mysxl.cn
未经许可不得转载!