2024 / 7 / 1
// ==UserScript== // @name 微信读书工具集 // @namespace http://tampermonkey.net/ // @version 24.7.1 // @description 点图获链,解除右键限制,自动滚动阅读,调节正文宽度 // @author 学习骇客 // @match *://weread.qq.com/* // @grant xxhk.org // ==/UserScript== (function() { 'use strict'; // 第一部分:复制图片 解除右键限制 (function() { // Custom messages const messages = [ '专注', // 这里添加你的自定义提示内容 '热爱', ]; // Function to copy text to clipboard function copyToClipboard(text) { GM_setClipboard(text, "text"); } // Function to show a temporary message function showTemporaryMessage() { const message = messages[Math.floor(Math.random() * messages.length)]; const msgDiv = document.createElement('div'); msgDiv.style.position = 'fixed'; msgDiv.style.top = '50%'; msgDiv.style.left = '50%'; msgDiv.style.transform = 'translate(-50%, -50%)'; msgDiv.style.backgroundColor = '#333'; msgDiv.style.color = '#fff'; msgDiv.style.padding = '10px'; msgDiv.style.borderRadius = '5px'; msgDiv.style.zIndex = '10000'; msgDiv.textContent = message; document.body.appendChild(msgDiv); setTimeout(() => { document.body.removeChild(msgDiv); }, 1000); } // Event listener for image click document.addEventListener('click', function(e) { if (e.target.tagName.toLowerCase() === 'img') { var imgSrc = e.target.src; copyToClipboard(imgSrc); // Trigger Esc key event const escEvent = new KeyboardEvent('keydown', { key: 'Escape', keyCode: 27, code: 'Escape', which: 27, bubbles: true, cancelable: true }); document.dispatchEvent(escEvent); } }); // Event listener for Esc key document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { showTemporaryMessage(); } }); // Remove right-click menu restrictions document.addEventListener('contextmenu', function(e) { e.stopPropagation(); }, true); document.addEventListener('mousedown', function(e) { if (e.button === 2) { // Right-click e.stopPropagation(); } }, true); document.addEventListener('mouseup', function(e) { if (e.button === 2) { // Right-click e.stopPropagation(); } }, true); })(); // 第二部分:设置页面宽度 (function() { // 设置页面宽度百分比的函数 const setPageWidth = (percent) => { const elements = [ ".readerTopBar", ".app_content", ".readerChapterContent.fontLevel4", ".readerChapterContent.fontLevel2", ".readerChapterContent.fontLevel1" ]; // 遍历所有选择器并设置宽度 elements.forEach(selector => { document.querySelectorAll(selector).forEach(el => { el.style.width = `${percent}%`; el.style.maxWidth = `${percent}%`; }); }); // 触发窗口调整大小事件 setTimeout(() => window.dispatchEvent(new Event("resize")), 100); // 将 div.readerControls 元素移动到屏幕右侧,超出缩放区域 const readerControls = document.querySelector('div.readerControls'); if (readerControls) { readerControls.style.position = 'fixed'; // 固定定位 readerControls.style.right = '10px'; // 移动到屏幕右侧,距离右侧10px readerControls.style.top = readerControls.getBoundingClientRect().top + 'px'; // 保持垂直位置不变 readerControls.style.zIndex = '9999'; // 确保在其他元素之上 } }; // 创建控制面板 const controlPanel = document.createElement('div'); controlPanel.style.position = 'fixed'; controlPanel.style.top = '50%'; controlPanel.style.left = '10px'; controlPanel.style.transform = 'translateY(-50%)'; controlPanel.style.backgroundColor = 'transparent'; controlPanel.style.border = '0px solid #000'; controlPanel.style.padding = '10px'; controlPanel.style.zIndex = '9999'; controlPanel.style.display = 'flex'; controlPanel.style.flexDirection = 'column'; controlPanel.style.alignItems = 'center'; controlPanel.style.width = '3em'; controlPanel.style.opacity = '0.1'; // 设置整个控制面板的透明度 // 创建标签 const label = document.createElement('label'); label.textContent = '🔍'; label.style.fontSize = '0.75em'; // 调整字体大小以适应面板 controlPanel.appendChild(label); // 创建按钮的函数 const createButton = (percent) => { const button = document.createElement('button'); button.textContent = `${percent}%`; button.style.marginTop = '10px'; button.style.width = '100%'; // 确保按钮占据面板的全部宽度 button.style.fontSize = '1em'; // 调整字体大小 button.onclick = () => { setPageWidth(percent); // 点击按钮时设置页面宽度 }; return button; }; // 添加60%、85%的按钮 controlPanel.appendChild(createButton(60)); controlPanel.appendChild(createButton(85)); // 将控制面板添加到页面主体 document.body.appendChild(controlPanel); })(); // 第三部分:自动滚动 (function() { let scrollInterval; let scrollSpeed = 0.7; // 默认滚动速度 const defaultScrollSpeed = 0.7; // 默认滚动速度 const speedStep = 0.5; // 每次按键调整的速度增量 function startScrolling() { if (!scrollInterval) { scrollInterval = setInterval(() => { window.scrollBy(0, scrollSpeed); }, 10); // 调整此数值以改变滚动的平滑度 } } function stopScrolling() { if (scrollInterval) { clearInterval(scrollInterval); scrollInterval = null; } } document.addEventListener('keydown', function(e) { if (e.key === 'ArrowDown') { scrollSpeed += speedStep; // 增加滚动速度 startScrolling(); } else if (e.key === 'ArrowUp') { scrollSpeed = Math.max(0, scrollSpeed - speedStep); // 减少滚动速度,但不低于0 startScrolling(); } else if (e.key === 'Enter') { e.preventDefault(); // 阻止默认行为 stopScrolling(); // 暂停滚动 scrollSpeed = defaultScrollSpeed; // 重置滚动速度到默认 } }); })(); })();