1. 识别 description 中的缩略图(支持懒加载 data-original + 路径替换),显示高清原图;2. 劫持 window.onload 阻止 ma.js 弹窗脚本执行。
This script enhances the browsing experience on torrent/download sites by automatically expanding thumbnails into high-definition original images and blocking specific popunder advertisements.
Auto-Resolution: Automatically detects thumbnail images (e.g., .th.jpg, .md.jpg) inside the description area and appends the Full HD original version underneath.
Link Conversion: Converts text-based image links (ending in .html) into actual visible images.
Lazy Load Support: Correctly identifies images using data-original attributes (often used by sites to hide the real image URL behind a loading placeholder like profile-load.svg).
Clean UI: Removes the original low-res thumbnails and "click-to-view" links that often trigger unwanted popups, leaving only the clean, full-size image.
The script currently supports the following logic for URL cleaning:
Generic Thumbnails:
Replaces *.th.jpg or *.md.jpg with *.jpg.
Imgtraffic.com:
Converts /i-1/ path to /1/.
Converts /1s/, /2s/ (etc.) paths to /1/, /2/.
Removes .html suffixes.
14xpics.space & Others:
Applies standard thumbnail removal rules.
The script is set to run at document-start to ensure it can intercept the ad scripts before the page fully loads.
Initialization: It immediately sets up the window.onload trap to block the ad script.
DOM Processing: Once the page content loads (DOMContentLoaded), it scans the #description container.
Image Processing: It iterates through all images and links, calculates the HD URL based on the rules above, and appends the new image to the DOM.
Cleanup: It removes the old wrapper links to prevent accidental clicks on popups.
This script is for educational and personal use only. It modifies the client-side display of web pages. The author is not responsible for any issues that may arise from using this script.