【免费无套路】CSDN文库免vip付费阅读全文丨解锁复制限制

CSDN文库阅读全文,去除VIP登录(不可用)遮挡,解锁鼠标复制文本功能

  1. // ==UserScript==
  2. // @name 【免费无套路】CSDN文库免vip付费阅读全文丨解锁复制限制
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description CSDN文库阅读全文,去除VIP登录(不可用)遮挡,解锁鼠标复制文本功能
  6. // @author icescat
  7. // @match *://*.csdn.net/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. const adjustArticle = () => {
  14. // 移除遮罩层
  15. document.querySelectorAll('.open, .vip').forEach(el => el.remove());
  16. // 展开被限制高度的内容
  17. const articleContainer = document.querySelector('.article-box .cont.first-show[data-v-6487a68f]');
  18. if (articleContainer) {
  19. articleContainer.style.maxHeight = 'none';
  20. }
  21. };
  22. // 启用复制功能
  23. const enableCopy = () => {
  24. document.body.oncopy = null;
  25. document.oncopy = null;
  26. document.querySelectorAll('*').forEach(el => {
  27. el.style.userSelect = 'auto';
  28. });
  29. };
  30. // 使用MutationObserver来监视文档的变化
  31. const observer = new MutationObserver((mutations) => {
  32. mutations.forEach((mutation) => {
  33. if (mutation.addedNodes.length) {
  34. adjustArticle();
  35. enableCopy();
  36. }
  37. });
  38. });
  39. observer.observe(document.body, {
  40. childList: true,
  41. subtree: true
  42. });
  43. // 页面加载时尝试执行一次
  44. window.addEventListener('load', () => {
  45. adjustArticle();
  46. enableCopy();
  47. });
  48. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址