搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

setting browser.taskbar.lists.tasks.enabled in prefs.js

  • 2 回覆
  • 1 有這個問題
  • 60 次檢視
  • 最近回覆由 ikhalil

more options

if I open the browser and in about:config set browser.taskbar.lists.tasks.enabled to false

it works and disables the task list in the task bar.

if i edit the prefs.js I find that the following option

   user_pref("browser.taskbar.lists.tasks.enabled", false);

if I set to true and start the browser again the task list is still hidden

   user_pref("browser.taskbar.lists.tasks.enabled", true);

So the only way to get it back is to toggle it from about:config. So putting the task list back and editing the prefs.js to add

   user_pref("browser.taskbar.lists.tasks.enabled", false);

doesnt turn off the tasklist either

So the task list is not dependent on the prefs.js at all? It seems to only toggle when done from about:config...

in fact if I delete the prefs.js altogether and it still remembers the task bar setting. So where is this particular setting made in windows? Is it in registry or somewhere else in windows

if I open the browser and in about:config set browser.taskbar.lists.tasks.enabled to false it works and disables the task list in the task bar. if i edit the prefs.js I find that the following option user_pref("browser.taskbar.lists.tasks.enabled", false); if I set to true and start the browser again the task list is still hidden user_pref("browser.taskbar.lists.tasks.enabled", true); So the only way to get it back is to toggle it from about:config. So putting the task list back and editing the prefs.js to add user_pref("browser.taskbar.lists.tasks.enabled", false); doesnt turn off the tasklist either So the task list is not dependent on the prefs.js at all? It seems to only toggle when done from about:config... in fact if I delete the prefs.js altogether and it still remembers the task bar setting. So where is this particular setting made in windows? Is it in registry or somewhere else in windows

被選擇的解決方法

Yes I did however the issue is Windows JumpList is configured in registry so as the parameter is toggled firefox is editing windows registry hence why adding the param to prefs.js alone doesnt work

I needed it added to prefs.js as I package a lockdown version of Firefox Portable to our customer for use in an application

I found a way to make it work. I added lines to config.js

  • Bulleted list item Firefox64\defaults\pref\config-prefs.js
  pref("general.config.filename", "config.js");    
  pref("general.config.obscure_value", 0);  
  pref("general.config.sandbox_enabled", false); 
  • Bulleted list item Firefox64\config.js

let wjl = {}; Components.utils.import("resource:///modules/WindowsJumpLists.jsm", wjl); wjl.WinTaskbarJumpList._initTaskbar(); wjl.WinTaskbarJumpList._deleteActiveJumpList();

從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

Did you make sure that Firefox is closed when you make the change to prefs.js because it won't work if Firefox is running ?

Note that there is no need to edit prefs.js if you can make the change via Settings (Options/Preferences). You can also use a user.js file, but user.js is always read when you start Firefox, so changes made via about:config are undone after restarting Firefox (i.e. it only works for the current session).

more options

選擇的解決方法

Yes I did however the issue is Windows JumpList is configured in registry so as the parameter is toggled firefox is editing windows registry hence why adding the param to prefs.js alone doesnt work

I needed it added to prefs.js as I package a lockdown version of Firefox Portable to our customer for use in an application

I found a way to make it work. I added lines to config.js

  • Bulleted list item Firefox64\defaults\pref\config-prefs.js
  pref("general.config.filename", "config.js");    
  pref("general.config.obscure_value", 0);  
  pref("general.config.sandbox_enabled", false); 
  • Bulleted list item Firefox64\config.js

let wjl = {}; Components.utils.import("resource:///modules/WindowsJumpLists.jsm", wjl); wjl.WinTaskbarJumpList._initTaskbar(); wjl.WinTaskbarJumpList._deleteActiveJumpList();