Last active
February 4, 2021 12:30
-
-
Save d-schmidt/73f6101615b17c12ad90a6f2b9306bad to your computer and use it in GitHub Desktop.
clear current (filtered) chrome history page using F12 console
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
// copy paste and enter to clear current page | |
for (i = 0; i < 150;i++) document.getElementById("checkbox-" + i).checked = true; | |
document.getElementById("remove-selected").disabled = false; | |
document.getElementById("remove-selected").click(); | |
document.getElementById("alertOverlayOk").click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment