搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 2 个回答
  • 1 人有此问题
  • 70 次查看
  • 最后回复者为 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();