how to zoom out on an chrome extension's popup -


some extensions' popup windows don't fit nicely page. if can zoom out on popup window, can use normal, there's no apparent way this.

example screenshot: img

you can see popup window extends below visible portion of screen. there's button on bottom says "record tab" can't manage click.

my chrome build:

version 52.0.2743.116 (64-bit) platform 8350.68.0 (official build) stable-channel orco firmware google_orco.5216.362.7 

all page zoom set 100% , font-size set medium in about://settings menu.

adjusting page zoom 75% in about://settings fixed 30 seconds popup reverted original zoom level.

the accepted answer mentions going extension's options page reset zoom, many extensions don't have/need options page.

if case:

  1. open popup
  2. right-click , "inspect"
  3. a "developer tools" window should open, , in title bar should name , path of popup html file, this: chrome-extension://[the extension id, long string of random letters]/popup.html
  4. open address in new tab, , should show normal popup content. long extension id can copy/pasted chrome://extensions "developer mode" on.
  5. reset zoom there default 100% (ctrl+0), extension developers design , test assuming 100%.

the key point here is, the zoom global/consistent across of extension's pages, why zooming "options" page works. page beginning within chrome-extension://[the extension id] have same zoom , affect zoom of other pages.

for example, extension's popup has question mark icon navigates separate help.html page still within popup, , zoom there affects main popup.html zoom well.

this applies webpages. zoom maintained on pages same domain. if zoom 125% 150% on 1 stackoverflow.com question, different stackoverflow.com question in tab zoom 150%.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

python 3.5 - Pyqtgraph string in x tick -