您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Get the download links without jumping to the video page
// ==UserScript== // @name Kissanime_Download // @namespace Kissanime_Download // @description Get the download links without jumping to the video page // @match https://kissanime.to/Anime/* // @match http://kissanime.to/Anime/* // @version 2.2 // @grant none // ==/UserScript== var episodes = $('table.listing > tbody > tr > td > a'); episodes.each(function () { $(this).parent().append('(<a href=\'#\' class=\'download\'> download</a>)'); }); $('a.download').click(function (event) { url = 'https://kissanime.to' + $(this).prev().attr('href') url = url + ' div#divDownload'; console.log(url); var ele = $(this); $(ele).parent().append('<div class="ajax">ajax result</div>'); $('div.ajax').load(url); return false // prevents the click event default action });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址