Files
MikOS/home/root/Desktop/1.js
2026-01-25 17:01:16 +08:00

55 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// ==UserScript==
// @name CSDN文库免vip阅读全文解锁复制限制
// @namespace http://tampermonkey.net/
// @version 1.0
// @description CSDN文库阅读全文去除VIP登录遮罩解锁鼠标复制功能
// @author icescat
// @match *://*.csdn.net/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const adjustArticle = () => {
// 移除遮罩层
document.querySelectorAll('.open, .vip').forEach(el => el.remove());
// 展开被限制高度的内容
const articleContainer = document.querySelector('.article-box .cont.first-show[data-v-6487a68f]');
if (articleContainer) {
articleContainer.style.maxHeight = 'none';
}
};
// 启用复制功能
const enableCopy = () => {
document.body.oncopy = null;
document.oncopy = null;
document.querySelectorAll('*').forEach(el => {
el.style.userSelect = 'auto';
});
};
// 使用MutationObserver来监视文档的变化
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.addedNodes.length) {
adjustArticle();
enableCopy();
}
});
});
observer.observe(document.body, {
childList: true,
subtree: true
});
// 页面加载时尝试执行一次
window.addEventListener('load', () => {
adjustArticle();
enableCopy();
});
})();