Skip to content

Instantly share code, notes, and snippets.

@peckjon
Last active January 26, 2024 20:41
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save peckjon/83eb1b96911553c2fdae45dbb543170c to your computer and use it in GitHub Desktop.
Save peckjon/83eb1b96911553c2fdae45dbb543170c to your computer and use it in GitHub Desktop.
Clear Honey Droplist
// paste into browser console at https://www.joinhoney.com/droplist to remove ALL Droplisted items
var script = document.createElement('script');
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(script);
setTimeout(() => {
$('img[alt="Remove this item from your Droplist"]').each(function(){this.click()});
$('button[aria-label="Remove item"]').each(function(){this.click()});
$('div[id="HoneyDropList:index-moreButton"]').click();
}, 2000);
@adamchenwei
Copy link

THIS IS GENIUES !!!! LOVE IT! used it, worked perfectly XD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment