23

I'm looking for a way to delete a whole URL in Google Chrome.

Do I need to run some other program or can it be done in the browser itself?

djsmiley2kStaysInside
  • 6,643
  • 2
  • 31
  • 43
user41514
  • 231
  • 1
  • 2
  • 3
  • ONE url out of manys? – akira Jul 05 '10 at 10:45
  • 2
    @Akira - You can do that in Firefox. Just start typing url and press DEL when you select it. – Apache Jul 05 '10 at 10:56
  • @Shiki: i know that. i asked the OP what (s)he wants. "whole url" is not really specific. one can delete a single entry ("one whole url") from the history in chrome, as well as the whole history .. and all that without any 3rd party stuff. – akira Jul 05 '10 at 11:08
  • @akira - okay okay sorry. – Apache Jul 05 '10 at 11:23
  • See http://superuser.com/questions/273278/how-to-remove-an-entry-from-chromes-remembered-urls for a better answer. – Andriy Drozdyuk Sep 23 '12 at 23:54

6 Answers6

43

I found the answer from here:

  1. Type part of the URL, so it shows up in your suggestions.
  2. Use the arrow keys to move to it.
  3. Press Shift+Delete (for Mac, press fn+Shift+delete) to remove the link.
Blackwood
  • 3,123
  • 11
  • 23
  • 32
bizi
  • 538
  • 4
  • 4
2
  1. Click the "Tools" menu.
  2. Select Options.
  3. Click the Under the Hood tab.
  4. Click Clear browsing data.
  5. Select the "Clear browsing history" checkbox.
  6. Use the "Clear data from this period" menu to select the amount of data you want to delete. 7. Select Everything to clear your entire browsing history completely.
  7. Click Clear browsing data
Catherine
  • 16,103
  • 5
  • 46
  • 55
Matan Eldan
  • 2,677
  • 1
  • 22
  • 22
2

Another alternative is CCleaner

Pulse
  • 4,523
  • 2
  • 19
  • 20
  • 2
    Not sure why you are recommending a separate tool rather than use the browsers built in method... – soandos Dec 21 '11 at 23:35
1

If you want to remove something specifically from your history, open Chrome and go to chrome://history/#e=1&p=0.

You may have to copy and paste that link, it doesn't seem to like to link directly to it.

Brad
  • 5,686
  • 8
  • 52
  • 83
1

Browser itself: you can inject JavaScript code like this.

Step 1 Since Chrome history is queried inside a iFrame, we have to visit: chrome://history-frame/ (copy and paste URL)

Step 2 Do the search query.

Step 3 Open the Chrome console(F12 or CtrlShifti or i) and execute:

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
document.getElementById("remove-selected").click()
document.getElementById("alertOverlayOk").click()

Actually this deletes the elements in the current page, so it's an incomplete solution. But the next page should automatically load, so you can simply run the code again (Up arrow then Return) until everything is deleted.

Jerome Baum
  • 103
  • 2
Rudolf Real
  • 1,198
  • 1
  • 8
  • 7
1

Open your chrome history tab from the right most corner of your window and remove any particular URL from it or select clear browsing data, a pop up windows appears select all check boxes and click on clear browsing data tab.

Sophia
  • 27
  • 1