- Log in to Zomato in your browser
- Go to order hostory page
- Click
Load More
as many times as you want. You can go back as far as you want. ( maybe I'll add this functionality in the script later) - Right click any item > Inspect
- paste the contents of
gluttony.js
into the console and run it
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* 1. Navigate to about:support in Firefox and click the button under the Profile Folder heading. | |
2. Enter the folder ending in .default (probably something like m61ofslb.default). | |
3. Create a folder named chrome if it doesn't exist already. | |
4. Drop this file into that folder and restart your Firefox browser. | |
Designed for Firefox Quantum on Mac OSX and may require modification to work on other operating systems. */ | |
.tab-close-button |
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
#!/bin/bash | |
function help { # Print help text | |
echo "Available commands:" | |
grep '^function' "${BASH_SOURCE[0]}" | sed -e 's/function / /' -e 's/{ //' | column -t -s\# | |
} |
OlderNewer