Skip to content

Instantly share code, notes, and snippets.

View dubeyjiit's full-sized avatar
🏠
Working from home

dubeyjiit dubeyjiit

🏠
Working from home
View GitHub Profile
@dubeyjiit
dubeyjiit / swiggy-invoice-download.js
Created September 21, 2021 10:48 — forked from paramaggarwal/swiggy-invoice-download.js
Download Swiggy invoices from Orders page
/*
* Make sure to alow popups so that the invoices can be downloaded.
* Run this in the browser console.
* In case the class name for the div changes, inspect and update.
*/
Array
.from(document.getElementsByClassName('_2uT6l'))
.map((el)=>el.innerText.match(/#([0-9]+)/)[1])
.map((num)=>"https://www.swiggy.com/invoice/download/"+num)