Я посмотрел на вкладке сети инструментов Chrome Dev, чтобы найти следующую конечную точку API (нажмите вкладку «Ответ», чтобы просмотреть данные JSON): https://steamdb.info/api/GetGraph/?type=concurrent_max&appid=570
Что соответствует этому элементу:
<iframe src="https://steamdb.info/embed/?appid=570" height="389px" width="100%" scrolling="no" frameborder="0"></iframe>
a.Chart.prototype.getCSV = function(a) {
var f = ""
, h = this.getDataRows()
, d = this.options.exporting.csv
, l = m(d.decimalPoint, "," !== d.itemDelimiter && a ? (1.1).toLocaleString()[1] : ".")
, e = m(d.itemDelimiter, "," === l ? ";" : ",")
, p = d.lineDelimiter;
c(h, function(a, d) {
for (var c, g = a.length; g--; )
c = a[g],
"string" === typeof c && (c = '"' + c + '"'),
"number" === typeof c && "." !== l && (c = c.toString().replace(".", l)),
a[g] = c;
f += a.join(e);
d < h.length - 1 && (f += p)
});