Greasy Fork

Get Total Download Count

Gets a total value as the count for downloads.

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/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];
}