• Home
  • Tools
    • Color Chart
  • Software
    • Windows tricks
      • Windows 11 Speed Up Tricks
      • Windows Command Prompt CMD
    • Android Phone
      • Android – Dangerous Settings to Turn Off
    • Projects
      • Copy Files
      • Php Autoscript
      • Web Tools
  • Payments
  • Notes
  • System Tips

Notes

ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software |

ABCDEFGHIJKLMNOPQRSTUVWXYZ
ON
PRT
OFF

<- Look Inside Data
Conditions:
Order:
7 Language Operation Title
Keywords
Application
Code Languageid
Show Html
Show Iframe
Make Public
Viewed
Viewed Date
Browsers Customizing Change The Default Download Location In Firefox
download firefox
Firefox
Browsers



0
02/08/2026
Browsers Customizing 10 Handy Firefox About:config Hacks
firefox configuration fire fox
Takeaway: If you really want to fine-tune your Firefox functionality, you have to roll up your sleeves and tinker with the about:config page. Jack Wallen shares some simple hacks to make Firefox work the way you want.

Unless you�re a Firefox power user, you may not be familiar with the about:config page. The Firefox about:config page is not so much a page as it is a somewhat hidden configuration section. It�s hidden because it�s fairly powerful and not nearly as simple to use as the standard Preferences window. In the about:config page, you have to know what you are doing or you can mess things up a bit. In fact, when you attempt to go to that page for the first time, you have to accept an agreement (which is really just a warning) before you can continue.

How this page works is simple. You reach the page by entering about:config in the address bar. There are entries (one per line) that handle various types of configurations. Each entry has a searchable keyword. The entries can be of Boolean, integer, or string value. Entries contain Name, Status, Type, and Value. Typically, you will be modifying only the Value, by double-clicking on it and making the change. With all of that in mind, let�s take a look at 10 of the best ways you can �hack� the about:config page.

Tip
If Firefox is fubar�d because you accidentally misconfigured about:config, you can fix it in one of two ways:

Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file.
If you can�t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. Note: This will restore all user preferences to their default values.

1: Speed up Firefox

This hack requires a few steps. Search for pipelining in the filter and you should see:

network.http.pipelining: Change this to true.

network.http.proxy.pipelining: Change this to true.

network.http.pipelining.maxrequests: Change this to 8.

Now search for max-connections and you should see:

network.http.max-connections: Change this to 96.

network.http.max-connections-per-server: Change this to 32.

2: Disable antivirus scanning
This is only for the Windows version. If you�re downloading large files, this scanning can seriously slow things down. And since you will most likely scan the downloaded file anyway, you�ll probably want to disable this. Of course, if you are uber paranoid (not a bad trait for computing), you might want to leave this entry alone.

To disable antivirus scanning, search for scanWhenDone and you should see:

browser.download.manager.scanWhenDone: Change this to false.

3: Open Javascript popups as tabs
If a popup window lacks the features of a browser window, Firefox will handle it like a popup. If you would prefer to open all windows, including popups, as new tabs, you need to tell Firefox in about:config. Search for newwindow and you will see three entries. Of those three entries, you will want to modify:

browser.link.open_newwindow.restriction: Change this to 0.

4: Spell checking in all fields
By default, Firefox checks spelling only in multiple-line text boxes. You can set it to check spelling in all text boxes. Search for spellcheckdefault and you should see:

layout.spellcheckDefault: Change this to 2.

5: Open search bar results in new tab
When you use the search bar, the results display in the current tab. This can be a nuisance because you will navigate out of the page you are currently in. To make sure Firefox always opens search results in a new tab, search for openintab and you should see:

browser.search.openintab: Change this to true.

6: Auto export bookmarks
In Firefox 3, bookmarks are automatically saved and exported for you. The only problem is that by default, they�re saved as places.sqlite instead of the more convenient bookmarks.html. To change this setting so that they can be easily re-imported, search for autoExportHTML and you should see:

browser.bookmarks.autoExportHTML: Change this to true.

7: Disable extension install delay
One of the few gripes I have with Firefox is the silly countdown you must endure every time you want to install an extension. Fortunately, this can be disabled. Search for enable_delay and you should see:

security.dialog_enable_delay: Change this to 0.

8: View source code in an external editor
When you need to view the source of a page, it opens up in browser popup. Most developers would probably like to have that opened in their favorite editor instead of having to cut and paset. To do this, there are two entries to modify. Search for view_source.editor and you will see:

view_source.editor.external: Change this to true.

view_source.editor.path: Change this to the explicit path to your editor of choice.

9: Get more add-on search results
When you do a search in the Add-on window, you�ll see just five results. You might find it more efficient to increase this number. Search for getAddons and you should see:

extension.getAddons.maxResults: Change this to 10 (or higher, if you want to see even more).

10: Redefine the Backspace button
Did you know you can configure Firefox to use the backspace button to either go back a page or go up a page? This keeps power users from having to go back and forth from the keyboard to the mouse. Search for backspace and you will see:

browser.backspace_action: Change this to 0 for previous page and 1 for page up.
Browsers



1867
09/09/2023
Browsers Customizing Disable The "resend Confirmation" In Firefox
firefox config
Annoying Resends
You can disable the "resend confirmation" in Firefox by going to about:config, searching for dom.confirm_repost.testing.always_accept, and setting it to true, but this isn't officially supported and might have risks; a better way to avoid it is to use middle-click or Ctrl+click for new tabs instead of the back button, or use the POST/Redirect/GET pattern in website development.
Using about:config (Use with caution)

Type about:config in the Firefox address bar and press Enter.
Accept the risk if prompted.
Search for dom.confirm_repost.testing.always_accept.
Double-click the preference to change its value to true.

Better User Practices (Recommended)

Open in New Tab: Instead of clicking the back button after submitting a form (like a search or login), use your middle mouse button (scroll wheel) or Ctrl + Left-Click on links to open them in a new tab, then close that tab.
Avoid Back Button: Don't use the back button after posting data; it forces the browser to resend the form data.

For Developers (To prevent it on your site)

Implement the POST/Redirect/GET (PRG) pattern: After a form submission (POST), redirect the user to a new page using a GET request. This way, refreshing the page only reloads the GET page, not resubmits the form.
Browsers



0
12/20/2025
Browsers Form Reduce Long Url To Short Url
short url
All
Have you ever tried to share a link to a website in a text, tweet, or message and wound up with a long ugly URL? Fortunately, there are many services that make it easy to shorten any URL (including your own web address) into an abbreviated URL that you can place into email, messages, websites, and social media posts. We'll show you how to use the best free options for shortening a URL on your computer, Android, iPhone, and iPad.

URL shortening services like Bitly, TinyCC, and TinyURL can instantly shorten any URL to something that's more memorable and easy to share.
Most URL shorteners allow you to create an account so you can update your destination links and track clicks.

Several URL shorteners have paid options that allow you to link your domain name to create custom branded links.
Browsers



1468
09/09/2023
Browsers Keyboard Keyboard Shortcuts Edge
keyboard shortcuts
Edge Version 108.0.1462.54
WindowsMac - Press this key - - To do this - -
Ctrl + Shift + B - - Show or hide the favorites bar - -
Alt + Shift + B - - Set focus on the first item in the favorites bar - -
Ctrl + D - - Save the current tab as a favorite - -
Ctrl + Shift + D - - Save all open tabs as favorites in a new folder - -
Ctrl + Shift + E - - Open search in sidebar - -
Alt + D - - Select the URL in the address bar to edit - -
Ctrl + E - - Open a search query in the address bar - -
Alt + E - - Open the Settings and more menu - -
Ctrl + F - - Open find on page - -
Alt + F - - Open the Settings and more menu - -
Ctrl + G - - Jump to the next result for find on page - -
Ctrl + Shift + G - - Jump to the previous result for find on page - -
Ctrl + H - - Open History - -
Ctrl + Shift + I - - Open Developer Tools - -
Alt + Shift + I - - Open the Send feedback dialog - -
Ctrl + J - - Open Downloads - -
Ctrl + K - - Open a search query in the address bar - -
Ctrl + Shift + K - - Duplicate the current tab - -
Ctrl + L - - Select the URL in the address bar to edit - -
Ctrl + Shift + L - - Paste and search or Paste and go (if it's a URL) - -
Ctrl + M - - Mute the current tab (toggle) - -
Ctrl + Shift + M - - Sign in as a different user or browse as a Guest - -
Ctrl + N - - Open a new window - -
Ctrl + Shift + N - - Open a new InPrivate window - -
Ctrl + O - - Open a file from your computer in Edge - -
Ctrl + Shift + O - - Open Favorites - -
Ctrl + P - - Print the current page - -
Ctrl + Shift + P - - Print using the system dialog - -
Ctrl + R - - Reload the current page - -
Ctrl + Shift + R - - Reload the current page, ignoring cached content - -
Ctrl + S - - Save the current page - -
Ctrl + T - - Open a new tab and switch to it - -
Ctrl + Shift + T - - Reopen the last closed tab, and switch to it - -
Alt + Shift + T - - Set focus on the first item in the app bar toolbar - -
Ctrl + U - - View source - -
Ctrl + Shift + U - - Start or stop Read Aloud - -
Ctrl + Shift + V - - Paste without formatting - -
Ctrl + W - - Close the current tab - -
Ctrl + Shift + W - - Close the current window - -
Ctrl + Shift + Y - - Open Collections - -
Ctrl + 0 (zero) - - Reset page zoom level - -
Ctrl + 1, 2, ... 8 - - Switch to a specific tab - -
Ctrl + 9 - - Switch to the last tab - -
Ctrl + Enter - - Add www. to the beginning and .com to the end of text typed in the address bar - -
Ctrl + Tab - - Switch to the next tab - -
Ctrl + Shift + Tab - - Switch to the previous tab - -
Ctrl + Plus (+) - - Zoom in - -
Ctrl + Minus (-) - - Zoom out - -
Ctrl + (in a PDF) - - Toggle PDF between fit to page / fit to width - -
Ctrl + [ (in a PDF) - - Rotate PDF counter-clockwise 90* - -
Ctrl + ] (in a PDF) - - Rotate PDF clockwise 90* - -
Ctrl + Shift + Delete - - Open clear browsing data options - -
Alt - - Set focus on the Settings and more button - -
Alt + Left arrow - - Go back - -
Alt + Right arrow - - Go forward - -
Alt + Home - - Open your home page in the current tab - -
Alt + F4 - - Close the current window
- - F1 - - Open Help
- - F3
- - Find in the current tab
- - F4 - - Select the URL in the address bar - -
Ctrl + F4 - - Close the current tab
- - F5 - - Reload the current tab - - Shift + F5 - - Reload the current tab, ignoring cached content
- - F6 - - Move focus to next pane - - Shift + F6 - - Move focus to previous pane - -
Ctrl + F6 - - Move focus to the web content pane
- - F7 - - Turn caret browsing on or off
- - F9 - - Enter or exit Immersive Reader
- - F10 - - Set focus on the Settings and more button
- - F10 + Enter - - Open Setting and more menu - - Shift + F10 - - Open context menu
- - F11 - - Enter full screen (toggle)
- - F12 - - Open Developer Tools - -
Esc - - Stop loading page; close dialog or pop-up - -
Spacebar - - Scroll down webpage, one screen at a time - - Shift + Spacebar - - Scroll up webpage, one screen at a time - - PgDn - - Scroll down webpage, one screen at a time - -
Ctrl + PgDn - - Switch to the next tab - - PgUp - - Scroll up webpage, one screen at a time - -
Ctrl + PgUp - - Switch to the previous tab - -
Home - - Go to the top of the page, Move keyboard focus to first item of pane - -
End - - Go to the bottom of the page, Move keyboard focus to last item of pane - -
Tab - - Go to next tab stop - - Shift + Tab - - Go to previous tab stop
Browsers



1484
09/09/2023
Browsers Security Remove Free.instantgreenapp.com From Edge
instantgreenapp.com popups
Edge
1. In Edge, go to Settings and more

2. Select Settings > Cookies and site permissions.

3. Under All permissions, select Pop-ups and redirects.

4. Turn ON the Block toggle.




Remove Free.instantgreenapp.com from Edge
Open Microsoft Edge.
Click on the three dots in the top right corner to expand the Edge menu.
Scroll down to Settings.
In the left menu, click on Site permissions.
Click on Notifications.
Click on the three dots on the right of the Free.instantgreenapp.com domain and click Remove.
? See the next step: Malwarebytes.
Browsers



0
01/06/2024
Browsers Setup To Clear Your Browsing Data In Microsoft Edge:
clear data style history
Edge Version 108.0.1462.54
Select Settings found by clicking on 3 dots in right hand corner and more > Settings > Privacy, search, and services.

Under Clear browsing data > Clear browsing data now, select Choose what to clear.
Under Time range, choose a time range from the drop-down menu.
Choose the types of browsing data you want to clear (see the table below for descriptions). ...

Select Clear now.

Browsing data you can delete in Microsoft Edge - Types of info - - What will be deleted - - Where it's stored

Browsing history - - The URLs of sites you've visited, and the dates and times of each visit. - - On your device (or, if sync is turned on, across your synced devices) - -

Download history - - The list of files you've downloaded from the web. This only deletes the list, not the actual files that you've downloaded. - - On your device - -

Cookies and other site data - - Information and data that websites store on your device to remember your preferences, such as sign-in info, your location, or media licenses. - - On your device - -

Cached images and files - - Copies of pages, images, and other media content stored on your device. The browser uses these copies to load content faster the next time you visit those sites. - - On your device - -

Passwords - - Site passwords that you've saved. - - On your device (or, if sync is turned on, across your synced devices)

Autofill form data (includes forms and cards) - - Info that you've entered into forms, such as your email, credit card, or a shipping address. - - On your device (or, if sync is turned on, across your synced devices) - -

Site permissions - - Go to Settings and more > Settings > Cookies and site permissions to see a list for each website, including location, cookies, pop-ups, and media autoplay. - - On your device - -

All data from the previous version of Microsoft Edge - - All data including history, favorites, passwords, and more from the legacy version of Microsoft Edge. - - On your device (or, if sync is turned on, across your synced devices)
Browsers



4
09/09/2023

Software Web Design