google chrome delete URL history

In address bar type: chrome://history-frame

Perform the search query of your URL address

Push: ctrl+shift+i and paste this code:

var inputs = document.getElementsByTagName('input');
for (var i = 0; i < inputs.length; ++i) { if (inputs[i].type == "checkbox"){ inputs[i].checked = true; } } document.getElementById("remove-selected").disabled = false

Remove selected items button.

Leave a Reply

Your email address will not be published. Required fields are marked *