-
-
Save adamchenwei/bd86bf2608d3c9b62eecdb92c08b2a5c to your computer and use it in GitHub Desktop.
Clear Honey Droplist
This file contains hidden or 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
// 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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment