Nyaa2pikpak

redirect torrent download button to saving to pikpak

2022-06-28 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Nyaa2pikpak
// @namespace    https://greasyfork.org/zh-CN/users/709496-wlm3201
// @version      0.1
// @description  redirect torrent download button to saving to pikpak
// @author       wlm3201
// @match        https://nyaa.si/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=nyaa.si
// ==/UserScript==

$("a[href^='/download/']").each(function() { $(this).attr("href", "https://drive.mypikpak.com/landing?__add_url=" + $(this).next().attr("href").match(/magnet:\?xt=urn:btih:.{40}/)[0]) })