CSDN 文章页绿化

(自用脚本) 绿化 CSDN 文章页面、支持手机端 CSDN 文章页绿化

2023-04-20 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @author       Lete114
// @version      0.1
// @license      MIT License
// @name         CSDN 文章页绿化
// @description  (自用脚本) 绿化 CSDN 文章页面、支持手机端 CSDN 文章页绿化
// @match        https://blog.csdn.net/*/article/details/*
// @icon         https://g.csdnimg.cn/static/logo/favicon32.ico
// @namespace    https://github.com/Lete114/my-tampermonkey-scripts
// @grant        GM_addStyle
// ==/UserScript==

;(function () {
  'use strict'

  const $ = (Selector, el) => (el || document).querySelector(Selector)
  const $$ = (Selector, el) => (el || document).querySelectorAll(Selector)
  const nullSpan = document.createElement('span')

  GM_addStyle(`
    /* 过滤文章页面的垃圾信息 */
    #asideHotArticle,
    #asideCategory,
    #asideNewComments,
    #asideNewNps,
    #asideArchive,
    #recommendNps,
    #treeSkill,
    .programmer1Box,
    .hide-article-box,
    .weixin-shadowbox,
    span[data-href^='csdnapp://'],
    #operate, .readall_box,
    .btn_open_app_prompt_div { 
        display: none !important
    }
    /* 解除文章内容可读限制 */
    .article_content {
        height: unset !important
    }
    /* 解除代码块无法自由选中 */
    #content_views pre,
    #content_views pre>code { 
        -webkit-touch-callout: auto !important;
        -webkit-user-select: auto !important;
        -khtml-user-select: auto !important;
        -moz-user-select: auto !important;
        -ms-user-select: auto !important;
        user-select: auto !important;
    }
    `)

  // 优化文章侧边栏
  const aside = $('.blog_container_aside')
  if (aside) {
    // 重排侧边栏顺序
    aside.appendChild($('#asideSearchArticle') || nullSpan)
    aside.appendChild($('#asideProfile') || nullSpan)
    aside.appendChild($('#asidedirectory') || nullSpan)
    aside.appendChild($('#asideArchive') || nullSpan)
  }

  // 关闭登录弹窗
  const style = document.createElement('style')
  style.textContent = '.passport-login-container{display:none}'
  document.head.appendChild(style)
  const timer = setInterval(() => {
    const closeLogin = $('#passportbox>span')
    if (closeLogin) {
      clearInterval(timer)
      closeLogin.click()
      style.remove()
    }
  }, 500)

  // 免登录复制
  $$('pre>code').forEach((el) => {
    el.setAttribute('onclick', 'mdcp.copyCode(event)')

    const attrKey = 'data-title'
    const attrValue = '免登录复制'
    // 修改复制按钮文字
    const observer = new MutationObserver((mutationList) => {
      mutationList.forEach((mutation) => {
        const target = mutation.target
        if (
          mutation.type === 'attributes' &&
          target.getAttribute(attrKey) === '登录后复制'
        )
          target.setAttribute(attrKey, attrValue)
      })
    })
    const btn = $('.hljs-button', el)
    btn.setAttribute(attrKey, attrValue)
    observer.observe(btn, { attributes: true })
  })

  // 链接跳转(避免打开 link.csdn.net)
  const content_views = $('#content_views')
  const clone = content_views.cloneNode()
  while (content_views.firstChild) clone.appendChild(content_views.firstChild)
  content_views.parentNode.replaceChild(clone, content_views)
  $$('#content_views a[href]').forEach((el) => {
    el.setAttribute('target', '_blank')
  })
})()