본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Disable Downloads

  • 6 답장
  • 2 이 문제를 만남
  • 1 보기
  • 최종 답변자: cor-el

more options

We have deployed Firefox across multiple sites in our company. We are looking for a way to disable the "CTRL+J" shortcut that opens the download manager. In fact, for the purpose of the profile that we are using, we do not need the download manager at all.

So far I was able to find a plugin that will allow us to disable the keyboard shortcut (Customizable-Shortcuts by Tim Taubert) which would meet our needs, but it always our preference to use our lockPref profile.

The solution that I tried didn't seem to work (preventing panel shown and toolkit UI) [Preferences below are for purposes of illustration. I am aware that syntax is not correct.]

browser.download.panel.shown=false browser.download.useToolkitUI=false

I'm wondering if anyone else has come across this and if anyone has an idea.

Thanks.

We have deployed Firefox across multiple sites in our company. We are looking for a way to disable the "CTRL+J" shortcut that opens the download manager. In fact, for the purpose of the profile that we are using, we do not need the download manager at all. So far I was able to find a plugin that will allow us to disable the keyboard shortcut (Customizable-Shortcuts by Tim Taubert) which would meet our needs, but it always our preference to use our lockPref profile. The solution that I tried didn't seem to work (preventing panel shown and toolkit UI) [Preferences below are for purposes of illustration. I am aware that syntax is not correct.] browser.download.panel.shown=false browser.download.useToolkitUI=false I'm wondering if anyone else has come across this and if anyone has an idea. Thanks.

선택된 해결법

If you want to change the shortcut keys;

Customizable Shortcuts {web link} Allows to customize Firefox shortcuts.

Go to the Mozilla Add-ons Web Page {web link} (There’s a lot of good stuff here)

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (6)

more options

I don't know if this will help;

CCK2 Wizard {web link} Need to customize Firefox? With the CCK2 Wizard, you can create custom Firefox configurations that can be installed as extensions or deployed with AutoConfig.

more options

Note that this shortcut normally opens the Bookmarks/History Manager (Library) with the Downloads folder selected. The Library can be accessed in many ways and there is also the about:downloads page that can be opened via the location bar. So I'm not sure what the reason is for disabling this keyboard shortcut.

more options

Hi,

I've explored the CCK2 wizard extensionally. It doesn't suit our needs as it is a pretty bloated way of achieving the exact same thing we've done in our policies.

more options

You are correct that the shortcut opens the Library view instead of directly to a downloads view.

We did not provide a reason for this to be disabled only that it should be. We have an application that is being interfered with by this combination.

more options

선택된 해결법

If you want to change the shortcut keys;

Customizable Shortcuts {web link} Allows to customize Firefox shortcuts.

Go to the Mozilla Add-ons Web Page {web link} (There’s a lot of good stuff here)

more options

You could opt for a simple extension that disables this shortcut key.

<?xml version="1.0"?>

<overlay id="keydisable-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<script type="text/javascript">
<![CDATA[
var E = window.document.getElementById("key_openDownloads");
if (E) {
  E.removeAttribute("key");
  E.removeAttribute("modifiers");
  E.removeAttribute("command");
}
]]></script>

</overlay>