// ==UserScript== // @name CSDN Focus // @description 🌚 黑暗模式上线, 一键变天 | CSDN, 脚本之家 无弹窗无广告无任何干扰, 自动展开文章和评论, 外链直达! 隐藏属性等你发现, 不试一下? 😃 // @version 1.6 // @author Finn // @namespace https://github.com/Germxu // @homepage https://github.com/Germxu/Scripts-for-TamperMonkey // @supportURL https://github.com/Germxu/Scripts-for-TamperMonkey/issues/new // @run-at document-start // @match blog.csdn.net/*/article/details/* // @match *.blog.csdn.net/article/details/* // @match www.jb51.net/article/* // // @grant GM_setValue // @grant GM_getValue // @license MIT // @compatible chrome 54+ // // @note V1.6 重要更新: 修复了一直以来可能出现的运行不成功和后台加载脚本失败的问题 // @note V1.5 重要更新: 添加黑暗模式, 一键切换, 优化精简大量静态代码,修复隐性Bug // @downloadURL none // ==/UserScript== (function () { 'use strict'; const csdn = `
TOP
`; const jb51 = ``; let h = document.documentElement, _Ds; let FinnData = new Proxy(GM_getValue('FinnData', {}), { set(target, key, val) { key === "dark" && val ? h.setAttribute("darkMode", true) : h.removeAttribute("darkMode"); Reflect.set(target, key, val); GM_setValue('FinnData', FinnData); return true; } }) if (location.host === "www.jb51.net") { _Ds = jb51; } else { _Ds = csdn; window.addEventListener("DOMContentLoaded", function () { document.querySelector(".blog_container_aside").setAttribute("username", username); document.body.addEventListener('click', function (e) { let ev = e.target; if (ev.nodeName.toLocaleLowerCase() === 'a') { if (ev.host.indexOf("csdn") === -1) { e.stopImmediatePropagation(); window.open(ev.href); e.preventDefault(); } } }, true); $("#FinnTop").click(function () { $("body,html").animate({ scrollTop: 0 }, 300); }); $("#darkBtn").click(function () { FinnData.dark ? FinnData.dark = !1 : FinnData.dark = !0; }) }) } if (!h) { let OB = new MutationObserver(ins); OB.observe(document, { childList: true }) } else { ins() } function ins() { h = document.documentElement; h.insertAdjacentHTML('afterbegin', _Ds); FinnData.dark && h.setAttribute("darkMode", true); } })();