Initial commit with README
This commit is contained in:
0
home/root/Desktop/1 - 副本 (10).txt
Normal file
0
home/root/Desktop/1 - 副本 (10).txt
Normal file
0
home/root/Desktop/1 - 副本 (11).txt
Normal file
0
home/root/Desktop/1 - 副本 (11).txt
Normal file
0
home/root/Desktop/1 - 副本 (12).txt
Normal file
0
home/root/Desktop/1 - 副本 (12).txt
Normal file
0
home/root/Desktop/1 - 副本 (13).txt
Normal file
0
home/root/Desktop/1 - 副本 (13).txt
Normal file
0
home/root/Desktop/1 - 副本 (14).txt
Normal file
0
home/root/Desktop/1 - 副本 (14).txt
Normal file
0
home/root/Desktop/1 - 副本 (15).txt
Normal file
0
home/root/Desktop/1 - 副本 (15).txt
Normal file
0
home/root/Desktop/1 - 副本 (16).txt
Normal file
0
home/root/Desktop/1 - 副本 (16).txt
Normal file
0
home/root/Desktop/1 - 副本 (17).txt
Normal file
0
home/root/Desktop/1 - 副本 (17).txt
Normal file
0
home/root/Desktop/1 - 副本 (18).txt
Normal file
0
home/root/Desktop/1 - 副本 (18).txt
Normal file
0
home/root/Desktop/1 - 副本 (19).txt
Normal file
0
home/root/Desktop/1 - 副本 (19).txt
Normal file
0
home/root/Desktop/1 - 副本 (2).txt
Normal file
0
home/root/Desktop/1 - 副本 (2).txt
Normal file
0
home/root/Desktop/1 - 副本 (20).txt
Normal file
0
home/root/Desktop/1 - 副本 (20).txt
Normal file
0
home/root/Desktop/1 - 副本 (21).txt
Normal file
0
home/root/Desktop/1 - 副本 (21).txt
Normal file
0
home/root/Desktop/1 - 副本 (22).txt
Normal file
0
home/root/Desktop/1 - 副本 (22).txt
Normal file
0
home/root/Desktop/1 - 副本 (23).txt
Normal file
0
home/root/Desktop/1 - 副本 (23).txt
Normal file
0
home/root/Desktop/1 - 副本 (24).txt
Normal file
0
home/root/Desktop/1 - 副本 (24).txt
Normal file
0
home/root/Desktop/1 - 副本 (25).txt
Normal file
0
home/root/Desktop/1 - 副本 (25).txt
Normal file
0
home/root/Desktop/1 - 副本 (26).txt
Normal file
0
home/root/Desktop/1 - 副本 (26).txt
Normal file
0
home/root/Desktop/1 - 副本 (27).txt
Normal file
0
home/root/Desktop/1 - 副本 (27).txt
Normal file
0
home/root/Desktop/1 - 副本 (28).txt
Normal file
0
home/root/Desktop/1 - 副本 (28).txt
Normal file
0
home/root/Desktop/1 - 副本 (29).txt
Normal file
0
home/root/Desktop/1 - 副本 (29).txt
Normal file
0
home/root/Desktop/1 - 副本 (3).txt
Normal file
0
home/root/Desktop/1 - 副本 (3).txt
Normal file
0
home/root/Desktop/1 - 副本 (30).txt
Normal file
0
home/root/Desktop/1 - 副本 (30).txt
Normal file
0
home/root/Desktop/1 - 副本 (31).txt
Normal file
0
home/root/Desktop/1 - 副本 (31).txt
Normal file
0
home/root/Desktop/1 - 副本 (4).txt
Normal file
0
home/root/Desktop/1 - 副本 (4).txt
Normal file
0
home/root/Desktop/1 - 副本 (5).txt
Normal file
0
home/root/Desktop/1 - 副本 (5).txt
Normal file
0
home/root/Desktop/1 - 副本 (6).txt
Normal file
0
home/root/Desktop/1 - 副本 (6).txt
Normal file
0
home/root/Desktop/1 - 副本 (7).txt
Normal file
0
home/root/Desktop/1 - 副本 (7).txt
Normal file
0
home/root/Desktop/1 - 副本 (8).txt
Normal file
0
home/root/Desktop/1 - 副本 (8).txt
Normal file
0
home/root/Desktop/1 - 副本 (9).txt
Normal file
0
home/root/Desktop/1 - 副本 (9).txt
Normal file
0
home/root/Desktop/1 - 副本.txt
Normal file
0
home/root/Desktop/1 - 副本.txt
Normal file
55
home/root/Desktop/1.js
Normal file
55
home/root/Desktop/1.js
Normal file
@@ -0,0 +1,55 @@
|
||||
// ==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();
|
||||
});
|
||||
})();
|
||||
11
home/root/Desktop/1.txt
Normal file
11
home/root/Desktop/1.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
// ==UserScript==
|
||||
// @name CSDN文库免vip阅读全文,解锁复制限制
|
||||
// @namespace http://tampermonkey.net/
|
||||
// @version 1.0
|
||||
// @description CSDN文库阅读全文,去除VIP登录遮罩,解锁鼠标复制功能
|
||||
// @author icescat
|
||||
// @match *://*.csdn.net/*
|
||||
// @grant none
|
||||
// @license MIT
|
||||
// ==/UserScript==
|
||||
|
||||
6
home/root/Desktop/MMC音乐.Miksc
Normal file
6
home/root/Desktop/MMC音乐.Miksc
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"SApp":"music",
|
||||
"Start":"__init__.mia",
|
||||
"display-ico":"ICO.png",
|
||||
"F":""
|
||||
}
|
||||
BIN
home/root/Desktop/WIN_20231112_07_46_41_Pro.jpg
Normal file
BIN
home/root/Desktop/WIN_20231112_07_46_41_Pro.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 173 KiB |
6
home/root/Desktop/计算器.Miksc
Normal file
6
home/root/Desktop/计算器.Miksc
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"SApp":"CALC",
|
||||
"Start":"__init__.mia",
|
||||
"display-ico":"ICO.png",
|
||||
"F":""
|
||||
}
|
||||
6
home/root/Desktop/设置.Miksc
Normal file
6
home/root/Desktop/设置.Miksc
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"SApp":"setting",
|
||||
"Start":"__init__.mia",
|
||||
"display-ico":"ICO.png",
|
||||
"F":""
|
||||
}
|
||||
1
home/root/PASSWD
Normal file
1
home/root/PASSWD
Normal file
@@ -0,0 +1 @@
|
||||
ROOT
|
||||
Reference in New Issue
Block a user