Gets a total value as the count for downloads.
目前為
此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-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];
}