// ==UserScript== // @name copyright // @namespace http://tampermonkey.net/ // @version 0.5 // @description 去除csdn与简书复制小尾巴,csdn未登陆自动阅读更多 // @author You // @match https://blog.csdn.net/* // @match https://www.jianshu.com/* // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; let host = window.location.host if (host === 'www.jianshu.com') { M.copyright.config = {} } else { csdn.copyright.init($("article")[0], '', ''); $('#btn-readmore').click(); } })();