- Goto pricehistory.app and enter the url of item you want the price history of.
- Open the browser console and run the following function.
function downloadPriceDataIntoCSV() {
price_series = chart.data.datasets.filter(item => item.label == "Prices")[0].data
// Create CSV header
const headers = ['price,datetime\n'];