Greasy Fork

来自缓存

Greasy Fork is available in English.

csdn-博客园-网页美化

csdn和博客园进行网页美化的一个脚本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         csdn-博客园-网页美化
// @description  csdn和博客园进行网页美化的一个脚本
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  csdn和博客园进行网页美化的一个脚本
// @author       yaochao,lrabbit
// @match        https://blog.csdn.net/*
// @match        https://www.cnblogs.com/*
// @match        https://juejin.cn/post/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var $ = window.$ || $;
    var host = window.location.host;

    function o(e) {
        if (e = "string" == typeof e ? document.querySelector(e) : e,
        navigator.userAgent.match(/ipad|ipod|iphone/i)) {
            var t = e.contentEditable
              , n = e.readOnly;
            e.contentEditable = !0,
            e.readOnly = !0;
            var o = document.createRange();
            o.selectNodeContents(e);
            var i = window.getSelection();
            i.removeAllRanges(),
            i.addRange(o),
            e.setSelectionRange(0, 999999),
            e.contentEditable = t,
            e.readOnly = n
        } else
            e.select()
    }

    function copy(e){
    var t = e.target || e.srcElement
          , n = document.documentElement.scrollTop;

        if (t.className.indexOf("hljs-button") > -1) {
            e.preventDefault();
            var i = document.getElementById("hljs-copy-el");
            i || (i = document.createElement("textarea"),
            i.style.position = "absolute",
            i.style.left = "-9999px",
            i.style.top = n + "px",
            i.id = "hljs-copy-el",
            document.body.appendChild(i)),
            i.textContent = e.currentTarget.parentNode.innerText.replace(/[\u00A0]/gi, " ");
            o("#hljs-copy-el");
            try {
                var r = document.execCommand("copy");
                t.dataset.title = '复制成功';
                r && setTimeout(function() {
                    t.dataset.title = '复制';
                }, 1e3)
            } catch (a) {
                t.dataset.title = '';
            }

        }
    }

    switch(host) {
        case 'blog.csdn.net':
            $('.adblock,aside,.recommend-box,.pulllog-box,.tool-box,.meau-gotop-box,#csdn-toolbar,.comment-box,.p4course_target,.right-item,.recommend-right,#dmp_ad_58,.fourth_column,.csdn-side-toolbar,#toolBarBox,#blogColumnPayAdvert,.login-mark,.passportbox,.csdn-toolbar').remove();
            $('main').css('float', 'unset').css('margin', 'auto').css("background", '#ccc').css('padding', '10px');
            $('.main_father.clearfix.d-flex.justify-content-center').css('background', 'url(https://c-ssl.duitang.com/uploads/item/201205/27/20120527232351_Xr3Bx.jpeg)');
            $('.article_content').removeAttr("style");
			$('#btn-readmore').parent().remove();
            $('.hljs-button').removeClass('signin');
            $('code').unbind('click').removeAttr('onclick').click(function(event){ });
            $('.hljs-button').unbind('click').removeAttr('onclick').click(function(event){copy(event)});
            $('.hljs-button').attr("data-title",'复制')

            break;
        case 'www.cnblogs.com':
            $('#header,#footer,#sideBar,#comment_form').remove();
            $('#mainContent').css('background', '#ccc').css('padding', '10px');
            break;
        case 'juejin.cn':
            $('.main-header-box').remove();
            break;
    }
})();