Showing posts with label firefox. Show all posts
Showing posts with label firefox. Show all posts

Friday, February 19, 2016

Prevent websites from hiding UI elements in Firefox browser window

This is freaking annoying
I find it very annoying when websites disable the menu bar, back and forward buttons, navigation bar, or bookmarks in windows. Banking websites and Paypal both have pop-up windows that 'castrate' my browser.

The JavaScript / HTML code that does this is quite straightforward; this is a comma-separated properties list of string tokens that define the new window behaviour:
window.open ("url","title",
"toolbar=no,
status=no,
scrollbars=no,
resizable=no,
location=no,
directories=no,
copyhistory=no,
menubar=no")

It took some digging, but Firefox allows you to disable modification of the attributes of windows with a little bit of about:config magic. Simply search for disable_window_open_feature as shown below, and double-click on the attributes that you don't want websites to be able to enable or disable. My preferences are to manually set the following properties to true:

  • dom.disable_window_open_feature.menubar
  • dom.disable_window_open_feature.minimizable
  • dom.disable_window_open_feature.personalbar
  • dom.disable_window_open_feature.scrollbars
  • dom.disable_window_open_feature.titlebar
  • dom.disable_window_open_feature.toolbar

Tuesday, January 25, 2011

Firefox 4.0 Beta 10 has AWFUL font rendering!

Wow. Just took FF beta 10 for a test-drive, and I have got to say, the font rendering is awful. Look at a screenshot of Chrome vs. Firefox:


Visual comparison of Chrome vs. Firefox 4

This may not look like a big deal in such a small sample, but trust me, after browsing for a few minutes, the eye strain was unbearable.

At this rate, I'm pretty sure that IE9 will regain market share after FF4 is released.