您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Display the thumbnail of each torrent listing without mouse hover.
// ==UserScript== // @name RARBG Thumbnail // @namespace Violentmonkey Scripts // @match https://rarbg.to/torrents.php // @grant none // @version 1.0 // @author skygate2012 // @description Display the thumbnail of each torrent listing without mouse hover. // @license MIT // ==/UserScript== document.querySelectorAll(".lista2t .lista > a[onmouseover]").forEach((item, index) => { setTimeout(() => { var img_url = item.getAttribute("onmouseover").match(/src=\\'(.*)\\/); item.parentElement.parentElement.querySelector("img").src = img_url[1]; }, index * 100); })