解除CSDN对游客的选中限制
// ==UserScript==
// @name CSDN 开启游客复制
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解除CSDN对游客的选中限制
// @author wanyi00
// @match http*://blog.csdn.net/*
// @icon https://g.csdnimg.cn/static/logo/favicon32.ico
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
let style = document.createElement('style');
style.innerHTML = 'main *{user-select:text !important;}';
document.head.append(style);
})();