CSDN Free Cpy

解除CSDN复制限制

目前為 2022-01-13 提交的版本,檢視 最新版本

// ==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;
})();