🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

CSDN 优化

优化 CSDN 体验

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         CSDN 优化
// @namespace    http://tampermonkey.net/
// @version      0.3.2
// @description  优化 CSDN 体验
// @author       share121
// @match        https://blog.csdn.net/*/article/details/*
// @icon         https://g.csdnimg.cn/static/logo/favicon32.ico
// @grant        none
// @license      MIT
// ==/UserScript==

window.addEventListener(
  'copy',
  e => (e.stopImmediatePropagation?.(), e.stopPropagation(), !1),
  !0
)
setTimeout(() => {
  document
    .querySelectorAll('a')
    .forEach(e =>
      e.addEventListener(
        'click',
        a => (
          a.stopImmediatePropagation?.(),
          a.stopPropagation(),
          (e.target = '_blank'),
          !1
        ),
        !0
      )
    )
}, 500)
document.querySelectorAll('pre, code').forEach(e => {
  e.style.cssText +=
    '-webkit-touch-callout:auto;-webkit-user-select:auto;-khtml-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto;'
})
document.querySelectorAll('.hljs-button.signin').forEach(e => {
  e.onclick = a => {
    a.stopPropagation()
    navigator.clipboard.writeText(e.parentNode.innerText).then(() => {
      e.dataset.title = '复制成功'
      setTimeout(() => {
        e.dataset.title = '复制'
      }, 3000)
    })
  }
  e.dataset.title = '复制'
})
let tmp = setInterval(() => {
  let button = document.querySelector('#passportbox > span')
  if (button) {
    clearInterval(tmp)
    button.click()
  }
})
document.querySelector('#article_content').style.height = 'auto'
document.querySelector('.hide-article-box.hide-article-pos')?.remove()
document.querySelector('#blogExtensionBox')?.remove()
document.querySelectorAll('.look-more-preCode').forEach(e => e.click())
document
  .querySelectorAll('.newcomment-list .ellipsis')
  .forEach(e => e.classList.remove('ellipsis'))