您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
14/9/2022, 15:12:59
// ==UserScript== // @name Just today's torrents // @namespace Violentmonkey Scripts // @match *://*.rarbg.to/* // @grant none // @version 1.0 // @author Guille615 // @description 14/9/2022, 15:12:59 // ==/UserScript== var fechaActual = new Date().toISOString().split('T')[0]; var nodes = $('.lista2'); for (var i =0; i < nodes.length; i++){ if (!nodes[i].textContent.includes(fechaActual)){ nodes[i].remove(); } }