Get Total Download Count

Gets a total value as the count for downloads.

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/19536/659175/Get%20Total%20Download%20Count.js

/*
 *  @name         Get Total Download Count
 *  @namespace    pxgamer
 *  @version      0.2.1
 *  @description  Gets a total value as the count for downloads.
 *  @author       pxgamer
 */

function gtdc() {
    'use strict';

    let returnedData;
    let searchString = /<p class=\"lightgrey\">Total download count: ([0-9]+)<\/p>/ig, matches, dl = [];

    $.ajax({
        type: "GET",
        url: "https://kat.cr/account/history",
        async: false,
        success: function (data) {
            returnedData = data;
            while (matches = searchString.exec(returnedData.html)) {
                dl.push(matches[1]);
            }
        },
        returnData: "json"
    });
	return dl[0];
}

QingJ © 2025

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