Join the AMA (Ask Me Anything) with Firefox leadership team to talk about Firefox priorities in 2024. Mark your calendar! Thursday, June 13, 17:00 - 19:00 UTC.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Learn More

How do I set the general zoom level programmatically

  • 4 respostas
  • 2 têm este problema
  • 760 visualizações
  • Última resposta de cor-el

more options

When I use Firefox on the external monitor, I set the zoom level to 150%. When I leave home a take my laptop with me, I set the zoom level to 100% to use with a smaller screen.

I want to automate setting the zoom level.

Is there a way to programmatically set the zoom level from a script? Does Firefox expose such an API / command-line tool?

Thanks!

When I use Firefox on the external monitor, I set the zoom level to 150%. When I leave home a take my laptop with me, I set the zoom level to 100% to use with a smaller screen. I want to automate setting the zoom level. Is there a way to programmatically set the zoom level from a script? Does Firefox expose such an API / command-line tool? Thanks!

Solução escolhida

Hi Pierre, this is a tough one. The default zoom level is stored in a database with site-specific zoom levels, and there's no preference you can set directly to modify that value.

You definitely can do it with a script you run manually in the Browser Console window, which has an optional global command line. The Options page is probably faster...

/* Default Zoom Level Setter for the Browser Console (2020-08-12)

   NOTE: BEFORE YOU CAN RUN THIS SCRIPT, ONE-TIME SETUP:
   Type or paste about:config into the address bar and press Enter
   Click the button promising to be careful
   In the search box type devt and pause while Firefox filters the list
   If devtools.chrome.enabled is false, double-click it to toggle to true

   Paste this entire script into the command line at the bottom of the Browser Console 
   (Windows/Linux: Ctrl+Shift+j; Mac: Command+Shift+j). Then press Enter to run it. 
   Firefox should flip to an open window and ask what percentage you want.
   
   Ref. https://searchfox.org/mozilla-release/source/browser/components/preferences/main.js#1166
*/

var newpct = window.prompt('New default zoom percentage (e.g., 100, 120, ...)?', '150');
if (newpct){
  let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(Ci.nsIContentPrefService2);
  let nonPrivateLoadContext = Cu.createLoadContext();
  let win = window.browsingContext.topChromeWindow;
  cps2.setGlobal(win.FullZoom.name, parseFloat((newpct / 100).toFixed(2)), nonPrivateLoadContext);
}
Ler esta resposta 👍 1

Todas as respostas (4)

more options

Solução escolhida

Hi Pierre, this is a tough one. The default zoom level is stored in a database with site-specific zoom levels, and there's no preference you can set directly to modify that value.

You definitely can do it with a script you run manually in the Browser Console window, which has an optional global command line. The Options page is probably faster...

/* Default Zoom Level Setter for the Browser Console (2020-08-12)

   NOTE: BEFORE YOU CAN RUN THIS SCRIPT, ONE-TIME SETUP:
   Type or paste about:config into the address bar and press Enter
   Click the button promising to be careful
   In the search box type devt and pause while Firefox filters the list
   If devtools.chrome.enabled is false, double-click it to toggle to true

   Paste this entire script into the command line at the bottom of the Browser Console 
   (Windows/Linux: Ctrl+Shift+j; Mac: Command+Shift+j). Then press Enter to run it. 
   Firefox should flip to an open window and ask what percentage you want.
   
   Ref. https://searchfox.org/mozilla-release/source/browser/components/preferences/main.js#1166
*/

var newpct = window.prompt('New default zoom percentage (e.g., 100, 120, ...)?', '150');
if (newpct){
  let cps2 = Cc["@mozilla.org/content-pref/service;1"].getService(Ci.nsIContentPrefService2);
  let nonPrivateLoadContext = Cu.createLoadContext();
  let win = window.browsingContext.topChromeWindow;
  cps2.setGlobal(win.FullZoom.name, parseFloat((newpct / 100).toFixed(2)), nonPrivateLoadContext);
}
more options

@jscher2000 There is now a "Default zoom" option in Preferences->Zoom->Default zoom . I can't seem to find the about:config option to set it. Any ideas?

more options

rathann said

@jscher2000 There is now a "Default zoom" option in Preferences->Zoom->Default zoom . I can't seem to find the about:config option to set it. Any ideas?

It is not stored in about:config. It is stored in the content-prefs.sqlite database along with site-specific zoom levels (it is associated with a group with a null name).

(You can use this query in a SQLite viewer to list out the zoom levels in the database: SELECT name, value FROM 'prefs' left outer join 'groups' on prefs.groupID = groups.id WHERE settingID = 1 )

more options

You can consider two use separate profiles each with their own default zoom setting and use Sync to keep both profiles synchronized.