How to set a custom page zoom value in Google Chrome
By default Google Chrome has predefined values for the page zoom setting. But what happens if none of those values satisfy your needs ? Since Google Chrome doesn’t provide you with way to set your own custom value we will need to use a workaround to achieve that.
The following workaround works by modifying the HTML code of the settings page allowing you to add (or remove if needed) more options from the drop down list. Another advantage of this method is that it doesn’t require an extension to be installed therefore not consuming extra unneeded memory.
Lets get started!
Access Google’s Chrome settings page by visiting chrome://settings/.
Posted in Software Tips.
Tagged browser, Chrome, Google, Google Chrome
How to make Firefox ask to save tabs on exit
Sadly the newer versions of Firefox no longer ask you if you want to save the open tabs when you close Firefox. This is probably because of the new feature that has been implemented in the general options which allows Firefox to always remember the open tabs and windows upon closing.
But what happens if you don’t always want to save the open tabs ?
To get back the original functionality of Firefox, that used to show a message on exit asking if we want to save the open tabs or not we need to dig a bit in Firefox’s configuration settings.
- Type about:config in your address bar and press enter.
- There are three entries we are interested in (four if you are using Firefox 12 or higher).
- browser.tabs.warnOnClose
- browser.warnOnQuit
- browser.warnOnRestart
- browser.showQuitWarning (for Firefox 12 and higher)
Search for each one individually and make sure that their value is set to true.
- Restart Firefox.
Now everytime you will close Firefox (assuming you have tabs open) you will get a message asking you if you want to save the current tabs or not.
Posted in Software Tips.
Tagged firefox, Mozilla firefox
Disable grey urls in Firefox’s address bar
Firefox 6 and higher support a new feature that will automatically color the domain name and the top level domain black, greying out the rest of the URL.
Since this feature is enabled by default in the latest versions you might want to disable it if you don’t like the way Firefox is displaying the URL in the address bar. If that is the case simply follow the steps below.
browser.urlbar.formatting.enabled (true)
browser.urlbar.formatting.enabled (false)
How to disable Firefox’s url formatting.
- Type about:config in your address bar and press enter.
- Search for browser.urlbar.formatting.enabled.
- Make sure the value is set to false.
The URL in the address bar should now be colored in black only.
Posted in Software Tips.
Tagged firefox, Mozilla firefox
Disable recently closed tabs and recently closed windows in Firefox
Firefox’s recently closed tabs and recently closed windows are not controlled by the history settings. Which means even if you have history disabled the last windows and tabs you closed will still be there.
If you are worried about your privacy and you don’t want others to able to find out the last websites you visited then an addition solution to disabling the history is to disable the recently closed tabs and recently closed windows as well.
In order to do that you will need to following the steps below:
- Type about:config in your address bar and press enter.
- Search for browser.sessionstore.max_windows_undo and browser.sessionstore.max_tabs_undo.
- Change the value to the number of max entries you want Firefox to remember. Use
0
to disable them completely.
And as always, if you are making changes to Firefox’s configuration, it is always wise to restart Firefox once the changes have been made.
Posted in Software Tips.
Tagged firefox, Mozilla firefox