解除CSDN复制限制
// ==UserScript==
// @name CSDN Free Cpy
// @namespace https://oxdl.cn/
// @version 1.0
// @description 解除CSDN复制限制
// @license GNU General Public License v3.0
// @author Eduarte
// @match https://*/*
// ==/UserScript==
(function() {
'use strict';
document.body.contentEditable=true;
})();