Get Total Download Count

Gets a total value as the count for downloads.

이 스크립트는 직접 설치하는 용도가 아닙니다. 다른 스크립트에서 메타 지시문 // @require https://update.greasyfork.org/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];
}