您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Shows the full poster on mouse over instead of the thumbnail.
// ==UserScript== // @name RARBBG - Full size mouseover // @namespace http://tampermonkey.net/ // @version 0.2.1 // @description Shows the full poster on mouse over instead of the thumbnail. // @author [email protected] // @match https://rarbg.to/torrents.php* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; document._onmousemove = document.onmousemove; document.onmousemove= null; $('#overlib').css({ position: 'fixed', top: 10, right: 10, left: 'auto' }) $('.lista a').each(function() { var matches = String($(this).attr('onmouseover')).match(/static\/over\/(\w+\.\w+)/i); if (matches) { $(this).attr('onmouseover', 'return overlib(\'<img src="//dyncdn.me/posters2/' + matches[1][0] + '/' + matches[1] + '" border=0>\')'); } });