您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
copy the code as you like
当前为
// ==UserScript== // @name CSDN 复制代码 // @namespace http://tampermonkey.net/ // @version 0.1 // @description copy the code as you like // @author haoxingxiao // @match https://blog.csdn.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=blog.csdn.net // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let ele = document.getElementsByTagName("style")[0] if(ele.innerText.includes("#content_views pre code")) { ele.parentNode.removeChild(ele) console.warn("已经为你屏蔽掉讨厌的登录复制了!") } })();