您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
yes
// ==UserScript== // @name kusonime direct download // @namespace kusonime // @version 2 // @description yes // @author Yakult // @match https://kusonime.com/* // @icon https://www.google.com/s2/favicons?domain=kusonime.com // @grant none // @require https://code.jquery.com/jquery-3.4.1.min.js // ==/UserScript== (function() { 'use strict'; var lth = $(`.dlbod > .smokeddl > .smokeurl > a` ).length /*var j = $('.smokeurl > a')[0].href.split('&url=') [1].replace('&type=2','') $('.dlbod') [0].append (decodeURIComponent(j) )*/ for(let i=0; i<lth; i++){ var x = atob($('.smokeurl > a' )[i].href.split('&url=' )[1].replace('&type=2','' ) ) var br = document.createElement('br' ) var xhref = document.createElement('a' ) xhref.innerHTML = x xhref.href = x /*$('.dlbod')[0].append(xhref) $('.dlbod')[0].append(br)*/ $('.smokeurl > a' )[i].href = x; } function mousedwn(e ){ try{ if(event.button==2||event.button==3) return true }catch( e ){ if(e.which==3 )return true }} document.oncontextmenu=function(){ return true}; document.ondragstart=function(){ return true}; document.onmousedown=mousedwn document.onkeydown=function( e){ e=e||window.event; if( e.keyCode==123||e.keyCode==18 ){ return true } } // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址