hihope direct download

Bypass hihope download login requirement

// ==UserScript==
// @name         hihope direct download
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Bypass hihope download login requirement
// @author       QZLin
// @match        http*://www.hihope.org/download/*
// @icon         https://icons.duckduckgo.com/ip2/hihope.org.ico
// @license      MITM
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll("img[src=\"../images/xz.svg\"]").forEach(e => {
        let s = e.getAttributeNode('onclick').nodeValue
        let url = s.match("return Dow\\('(.*)'\\)")
        if (url) {
            e.onclick = () => { window.open(url[1]) }
        }
    })
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址