-
-
Save rohanjoseph93/2ed2188dd04953dcc3afa47af39a40d2 to your computer and use it in GitHub Desktop.
Export Medium Stats Stores to CSV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run Inspector Console in chrome and copy and paste the following code in the /stats/stories view | |
function download(filename, text) { | |
var pom = document.createElement('a'); | |
pom.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text)); | |
pom.setAttribute('download', filename); | |
if (document.createEvent) { | |
var event = document.createEvent('MouseEvents'); | |
event.initEvent('click', true, true); | |
pom.dispatchEvent(event); | |
} | |
else { | |
pom.click(); | |
} | |
} | |
content = ""; | |
rows = document.querySelectorAll(".sortableTable-row.js-statsTableRow") | |
rows.forEach(function(row) { | |
title = row.querySelectorAll("h2.sortableTable-title")[0].innerText | |
values = row.querySelectorAll(".sortableTable-value") | |
views = values[1].innerText | |
reads = values[2].innerText | |
readRatio = values[3].innerText | |
recommends = values[4].innerText | |
content += title + ";" + views + ";" + reads + ";" + readRatio + ";" + recommends + "\n" | |
}); | |
download("medium-metrics-" + new Date().toISOString().slice(0, 10) + ".csv", content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment