Greasy Fork is available in English.
CSDN去除复制后缀
当前为
// ==UserScript==
// @name CSDN相关脚本
// @namespace http://tampermonkey.net/
// @version 0.1
// @description CSDN去除复制后缀
// @author Louis
// @match *://blog.csdn.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
csdn.copyright.init($("article")[0], "", "");
})();