Having to hit the X to close out that bar over and over is such a pain. When a download completes, I want to have the bar clear itself and leave the bottom of the screen, similar to the way Download Statusbar for Firefox does. How do I do this?

link|improve this question

60% accept rate
1  
I wonder if anyone has discovered anything new to report on this in the past 10 months? I have the same gripe.... – Philip Dec 30 '10 at 18:56
1  
The newest dev version of Chrome now includes a new "New Downloads UI" feature that you can enable in chrome://flags/, which "completely disables the download shelf. In the future, it will also enable the experimental new ui." – Alec Aug 26 '11 at 10:51
feedback

9 Answers

up vote 13 down vote accepted

Although this is currently one of the most requested features as can be seen here there is currently no way to do this.

I have also not found any extension yet that supports this functionality.

link|improve this answer
Darn too bad :-( – Ivo Flipse Feb 21 '10 at 20:18
feedback

Go to chrome://flags.

In this, there is an option called "New Download UI". This will disable the downlaod bar. You can keep track of your downloads using the downloads tab (Ctrl+J).

However, doing this breaks the ability to install userscripts! You have to go and change it back in order to install userscripts.

link|improve this answer
feedback

Easier keyboard shortcuts (Windows): Ctrl-J Ctrl-W (open Downloads tab, close it)

link|improve this answer
1  
Hahaha man I just adore guerrilla stuff like this :) +1 – Ivan Ivanić Nov 6 '11 at 11:36
feedback

Keyboard shortcut solution for Mac users

The Download Bar has been my #1 complaint about Google Chrome ever since I started using it, and was often a reason to switch back to Safari as my main browser. Every now and then I go through all the Google Groups topics about this, but even though there've been bug reports and feature requests about this for years, nobody at Google can be bothered to add a simple "Close Download Bar" keyboard shortcut or a "Don't show the Download Bar" checkbox in the settings.

Furthermore, the Download Bar isn't added within the window, the window is resized and then the Download Bar gets added. Hello Google, this isn't 1995 where JavaScripts are constantly resizing your application windows. I am the user, and I decide how large my windows should be.

When you close the Downloar Bar right away, the window size is restored though. However, when you interact with other applications for a while and then return to Google Chrome to close the Download Bar, it forgot the original window size for some reason, and you're stuck with the resized window. This probably isn't a problem on a screen with a high resolution, but on laptops where you have less screen real estate, it can be really annoying.

Because of the resizing, I started looking into finding a solution using AppleScript. And while I was working on that, I found a way to automate the closing of the Download Bar as well.

AppleScript that closes the Download Bar

Here's what it does:

  1. Opens the Downloads window (which automatically removes the Download Bar)
  2. Closes the Downloads window
  3. Returns to the previously active tab
  4. Optional: resizes the window to your preferred dimensions
on run
    tell application "Google Chrome"
        activate

        -- know which tab to return to
        set active_tab to active tab index of front window

        tell application "System Events"
            tell application process "Google Chrome"
                -- opens download window and removes the download bar
                keystroke "j" using {command down, shift down}
                -- make sure the keystroke works
                delay 0.2
                -- closes the download window
                keystroke "w" using command down
            end tell
        end tell

        -- return to the tab
        set active tab index of front window to active_tab

        -- optional: resize to your preferred dimensions
        set bounds of front window to {50, 40, 1400, 810}
    end tell
end run

Like I said, after a while Google Chrome forgets the original window size. The bounds in the script are how I prefer my browser window on my MacBook Air resolution. You can remove this, or set it to whatever you want. I guess it's also possible to determine what the bounds are after the window has been resized, and then calculate what they were if you subtract the height of the Download Bar.

Install AppleScript as Service with keyboard shortcut

The easiest way to run this script is to install it as a system wide Service that you can then activate using a keyboard shortcut. To do this, follow these steps:

  1. Start the Automator application
  2. Create a "Service"
  3. Set the "Service receives" to "no input" (drop down) at the top
  4. Search for "AppleScript" on the left
  5. Drag the "Run AppleScript" action to the Workflow pane on the right
  6. Paste in the above code (and test it if you like)
  7. Save the Service as something like "Google Chrome: Close Download Bar"

Next:

  1. Go to System Preferences > Keyboard
  2. Select "Services" on the left
  3. Find your newly created Service on the right under the heading "General"
  4. Double click on the right side of that line to activate the shortcut input box
  5. Press your preferred key combo (I used Control–Option–Command–J)

And that's it. Now, whenever you press your key combo, Google Chrome will be activated (if it wasn't already), and the AppleScript is loaded removing the Download Bar. So it's also an easy way to quickly return to Chrome, e.g. when you did something with the file you downloaded.


Note 1: This also works in Google Chrome Canary; simply refer to "Google Chrome Canary" in the AppleScript.
Note 2: A similar approach should work in Windows using AutoHotKey.

link|improve this answer
feedback

Auto-closing the download shelf? Ha! Good luck with that; the devs are resolute to not implement that for some reason. However, they have made it so that opening a file (ie, by clicking on its download-bar entry) will remove it, and if the bar is empty, then it will hide.

They also refuse to make an option to not show the shelf at all.

link|improve this answer
feedback

For what it's worth, you can close it with the keyboard by doing:

  • Windows: Alt-F, D, TAB, TAB, [RETURN], CTRL-W

  • Mac: CMD-SHIFT-J, TAB, TAB, [RETURN], CMD-W

Seems tedious, but if you do it a couple times, it becomes second nature.

UPDATE: Actually, I noticed you can also do this:

  • Windows: ALT-D, SHIFT-TAB, SHIFT-TAB, SHIFT-TAB, SPACEBAR

  • Mac: CMD-L, SHIFT-TAB, SHIFT-TAB, SHIFT-TAB, SPACEBAR

link|improve this answer
1  
When did they add these? – Ivo Flipse Mar 22 '11 at 13:42
2  
@Ivo, these are standard OS GUI navigation shortcuts, they're not Chrome-specific – Pavel Jul 20 '11 at 10:09
2  
the only missing combo is for Hade-Uken. – Arjang Oct 17 '11 at 11:12
feedback

There is currently no way to do this. There are a few discussions on Google Groups about it and suggestions have been made in the help forum.

link|improve this answer
feedback

You can get rid of the download bar with a keyboard shortcut:

http://metalab.at/wiki/Benutzer:Tessellated/Chromium_Clicky

link|improve this answer
feedback

How to auto hide download bar - Enter “about:flags” into the Address Bar and hit Enter. Scroll down until you see the listing for New user interface for the "Download". Enable it and let the browser restart.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.