Logo

Fix ERR_CONNECTION_RESET in Chrome

This post will help you fix the ERR_CONNECTION_RESET error in Google Chrome. This error indicates that the Chrome browser wasn’t able to establish a stable connection or that there really is no connection at all with the website you are trying to open. This error does not occur on all websites though. When you encounter this kind of error message you will see the following message on your Google Chrome browser:

“This website is not available, The connection to example.com was interrupted, Error 101 (net:: ERR_CONNECTION_RESET): The Connection was reset.”

Note: You need to follow the options given below to fix the ERR_CONNECTION_RESET error and make sure to reload the webpage each time you complete following each one of the fixes.

Option 1 – Check the Network Cables and restart the router then reconnect

Of course, the first thing you can try is to check if the network cables connected to your computer or router are properly connected. And if your computer is connected via Wi-Fi, you need to make sure to restart your router once. In addition, you can also forget the Wi-Fi your computer is currently connected to and then try reconnecting again to see if it would work.

Option 2 – Try removing the Proxy

Removing the Proxy might also help you in fixing the ERR_CONNECTION_RESET error in Chrome. Here’s how you can do it:

  • Tap the Win + R keys to open the Run dialog box.
  • Then type “inetcpl.cpl” in the field and hit Enter to pull up the Internet Properties.
  • After that, go to the Connections tab and select the LAN settings.
  • From there. Uncheck the “Use a Proxy Server” option for your LAN and then make sure that the “Automatically detect settings” option is checked.
  • Now click the OK and the Apply buttons.
  • Restart your PC.

Note: If you are using a third-party proxy service, you have to disable it.

Option 3 – Try to increase the Maximum Transmission Unit (MTU)

You can also try increasing the Maximum Transmission Unit to fix the error. To do so, follow these steps:

  • Open Settings and go to Network & Internet > Ethernet.
  • From there, take off the Active Wireless / Wired Network Connection.
  • Next, open Command Prompt as admin.
  • Then type the “netsh interface IPv4 set subinterface “Ethernet 4” mtu=1472 store=persistent” command and hit Enter to execute it.

Option 4 – Flush the DNS and reset TCP/IP

Flushing the DNS and reset TCP/IP could also help in fixing the ERR_CONNECTION_RESET error in Chrome. To do so, refer to these steps:

  • Click the Start button and type in “command prompt” in the field.
  • From the search results that appear, right-click on Command Prompt and select the “Run as administrator” option.
  • After opening Command Prompt, you have to type each one of the commands listed below. Just make sure that after you type each command, you hit Enter
    • ipconfig /release
    • ipconfig /all
    • ipconfig /flushdns
    • ipconfig /renew
    • netsh int ip set dns
    • netsh winsock reset

After you key in the commands listed above, the DNS cache will be flushed and the Winsock, as well as the TCP/IP, will reset.

Option 5 – Disable the AppEx Networks Accelerator feature

The AppEx Networks Accelerator is known to slow down network connections. Some users reported that it slows down the network speed by 70% up to 80% which is why you need to disable it. Here’s how you can do it:

  • Go to Settings and select Network & Internet and from there select Ethernet > Change adapter options.
  • Next, right-click on the network connection and select Properties.
  • Then look for AppEx Networks Accelerator and uncheck its checkbox.
  • Now click the OK button to save the changes and then check if the error is now fixed.

Option 6 – Delete the WLAN Profiles

Deleting the WLAN Profiles might be a good idea if you are not able to connect to the internet on your computer and if you’re using Wi-Fi. It could be that the networks that were connected previously have gone rogue which is why it is not connecting properly. And so deleting the WLAN profiles might help you in fixing the ERR_CONNECTION_RESET error.

Option 7 – Reinstall the Network Adapter Drivers

  • Tap the Win + R keys to launch the Run window and then type in the “devmgmt.msc” command and hit Enter to open the Device Manager window.
  • Under the Device Manager, you will see a list of drivers. From there, look for the Network Adapters and expand it.
  • Then right-click on each one of the Network drivers and select “Uninstall device”.
  • Restart your PC.

Option 8 – Try to disable the Wi-Fi Miniport

  • In the Cortana Search box, type “command prompt” then right-click on the search result and select “Run as administrator”.
  • After opening Command Prompt with admin privileges, type the commands listed below and hit Enter right after you key in each one of them.
    • netsh wlan stop hostednetwork
    • netsh wlan set hostednetwork mode=disallow
  • Now exit Command Prompt and tap the Win + R keys to open the Run dialog box.
  • Type “cpl” in the field and hit Enter to open Network Connections.
  • From there, look for Microsoft Virtual Wi-Fi Miniport and right-click on it, and then select Disable.

Option 9 – Start Chrome in Safe Mode

The same with Windows Safe Mode, starting Chrome in Sage mode will open the browser but without all the user settings and extensions. And then try opening the website you were trying to open earlier.

Option 10 – Reset Google Chrome

  • Open Google Chrome, then tap the Alt + F keys.
  • After that, click on Settings.
  • Next, scroll down until you see the Advanced option, once you see it, click on it.
  • After clicking the Advanced option, go to the “Restore and clean up the option and click on the “Restore settings to their original defaults” option to reset Google Chrome.
  • Now restart Google Chrome.

Do You Need Help with Your Device?

Our Team of Experts May Help
Troubleshoot.Tech Experts are There for You!
Replace damaged files
Restore performance
Free disk space
Remove Malware
Protects WEB browser
Remove Viruses
Stop PC freezing
GET HELP
Troubleshoot.Tech experts work with all versions of Microsoft Windows including Windows 11, with Android, Mac, and more.

Share this article:

You might also like

Disable WEB camera with PowerShell in Windows
Windows PowerShell is a powerful tool inside the Windows environment often overlooked by typical users which is a great mistake since it can offer a large array of functionality and usability and if used well can offer a unique working experience. Today we will be using PowerShell to turn the WEB camera off so it can not be accessed, completely disabling it for use. You might want to do this for security reasons or just want to learn few new things. Whatever your reason might be, I am welcoming you to this tutorial and please do keep reading.

Finding device ID

In order to disable the WEB camera first thing we need to do is to find a matching device ID. We will find this value inside the device manager, so press ⊞ WINDOWS + X to open the secret menu. keyboard with windows and x markedIn the menu choose device manager and click on it. Windows menu device managerWhen the device manager opens, expand the Imaging devices or Cameras section. Right-click Integrated Camera or the primary webcam, and click Properties. Go to the Details tab. Under the Property section, click to select Matching device ID from the drop-down. Right-click the value and select Copy camera device managerThe next step is to download and install Windows Driver Kit (WDK)

PowerShell script

Create and run a PowerShell script with the following parameters/values to disable the camera. Substitute the <FOLDER> placeholder with the actual name of the folder where your copy of Devcon is residing
$id = (Get-CimInstance Win32_PnPEntity |

where caption -match '<PRIMARY CAMERA>').pnpDeviceID

$ppid = "{0}{1}" -f '@',$id

Set-Location c:\<FOLDER>

Devcon status $ppid

Devcon disable $ppid

Devcon status $ppid
To enable the camera device, run the command below in PowerShell:
devcon enable $ppid
Read More
4 Methods of Fixing Error Code 49

Error Code 49 – What is it?

Error Code 49 is a common device driver error that users encounter on any Windows 2000 and later operating system versions. The error occurs when the connected peripheral devices fail to function properly due to an overload of the system hive’s size. The error when prompted pops up on your screen with the following message:
"Windows cannot start new hardware devices because the system hive is too large (exceeds the Registry Size Limit). (Code 49)”
The error causes unattached devices to be displayed on the system hive list.

Solution

driverfix boxError Causes

Error Code 49 mainly results from problems in Windows registry system files; the system hive in the Windows registry exceeds its size limit. The system hive is part of the Windows registry and it is where files regarding devices are contained along with user preferences and applications. The devices will not work until the system hive size is brought back to normal levels.

Further Information and Manual Repair

There are several ways you can use to fix your error code. Here are the following.

Method 1 – Uninstall unused devices

One of the best ways to address the error code is to uninstall the unused devices which are listed on your computer’s system hive. To do this:
  • Log in using an Administrator account
  • Click the Start button and then click ‘Run’
  • In the box, enter the command:
  • "set devmgr_show_nonpresent_devices=1 cd%SystemRoot%System32 exit" and click enter
  • Open Device Manager, click ‘View’, and then choose ‘Show hidden devices’ to see unused devices.
  • When you can see the list, click on the device you want to uninstall by selecting the ‘Driver’ tab and then select ‘Uninstall’.
  • After uninstall is complete, restart your computer.

Method 2 – Use System Restore

If the error still persists, you can use system restore to eliminate the problem. Here is how you can do so:
  1. Log in using an Administrator account
  2. Click ‘Start’ button and select All Programs > Accessories > System Tools > System Restore
  3. Click ‘Restore my computer to an earlier time’ and click ‘Next’
  4. Select the last Windows restore point from the ‘On this list, click a restore point’ list, and click ‘Next’
  5. Click ‘Next’ on the confirmation window to proceed
  6. Restart your PC after restoration is complete
By restoring the system via a last saved system checkpoint, you can obtain undamaged Windows system files that can help avert the error code.

Method 3 – Manually uninstall and reinstall the device driver

If using system restore does not work in resolving the error code either, you may have to resort to manually uninstalling and then reinstalling the device driver causing the problem. This would be necessary since the remaining incomplete files due to a partial removal or installation of programs is what results in the error code. By uninstall and reinstalling the device driver program, it would lead to the completion of the files. You can do this by firstly logging in as Administrator and open Device Manager. Select the device that is causing the problem and double click it and make sure that the peripheral is connected properly to the PC. Upon opening, click on the ‘Driver’ tab and then select ‘Update Driver’. Make sure to refer to the system documentation that you received with your PC or computer to check for the motherboard details and driver specifics.

Method 4 – Use software to automatically download the driver

Manually uninstalling and reinstalling the driver will do the trick; however, it may be time-consuming, especially when you would have to resort to your hardware user manual. Therefore, using a program such as DriverFIX can save you a lot of time and frustration in having your device work properly on your computer. DriverFIX, with its user-friendly approach to help you fix your PC issues, comes with an integrated database that detects which drivers you need to reconfigure within just a few seconds and downloads it automatically. It further ensures that your drivers are installed in their entirety leaving no room for any incomplete files to remain that create Error Code 49. It also has the added advantage of being able to backup and restore your files should there be the slightest possibility of system file damage. DriverFIX is the answer to fixing your PC error codes accurately and quickly. Click here to download DriverFIX to fix Error Code 49 quickly and effectively!
Read More
How to Fix the File Too Large Error in Windows 10
If you are trying to copy large files that are over 4GB to a USB flash drive or SD card, but you suddenly get an error message saying, “File Too Large, The file is too large for the destination file system”, read on as this post will help you fix this problem. A user recently reported that while trying to copy a 4.8GB zipped file from a Windows 10 PC to a new 8GB USB drive but only got the File Too Large error message instead. If you share the same problem with this user and you know that there is more than enough available space for the file in your USB drive or SD card, continue reading until you get to the instructions provided in this post so that you will be able to copy the file successfully. It is most likely that the USB drive has been FAT32 formatted which is why you’re unable to copy the file and got an error. The FAT32 file system has a built-in limitation on the size of the individual file that it may contain. For instance, it’s 4GB so even though collectively, it may have files or even 1TB individually it shouldn’t be more than 4GB. Thus, you need to change the file system from FAT32 to NTFS. To do that, carefully follow the instructions provided below.
  • Step 1: Connect the USB drive and open the Windows File Explorer.
  • Step 2: Afterwards, right-click on the USB drive letter and select Format from the context menu.
  • Step 3: Next, select NTFS instead of FAT32 the instant a dialog box appears from the drop-down menu for the file system.
  • Step 4: Now click on the Quick Format option and then click the Start button to reformat the USB drive.
Note: There is also another way you can change the file system. In this alternative way, you need to open an elevated Command Prompt and type the convert X: /fs:ntfs /nosecurity command, and hit Enter to execute it. Remember that in this command, “X” is the letter of your USB drive so whatever the letter of your drive is, you need to make sure to put it instead of “X”. Once the process is completed, try copying the file again.
Read More
What to do if Windows is stuck in Tablet Mode
To make the Windows 10 operating system a lot more user-friendly, Microsoft introduced the Tablet Mode for Windows 10 devices, especially the 2-in-1 devices like Surface Pro and Surface Book. Despite the Tablet Mode’s efficiency, it also encounters some errors from time to time. One of the issues users reported about tablet mode is that they can’t turn off or exit tablet mode. If you are one of these users, read on as this post will guide you in what you can do to fix the issue. To fix the problem with Tablet Mode, there are several suggestions you can check out. You can try to check the full-screen setting, or perform a full shutdown or perform two buttons to restart the Surface devices. You could also disable Tablet Mode via Registry Editor or perform System Restore or change the settings in the System tab or the Action Center.

Option 1 – Try to check the full-screen setting

  • Tap the Win + I keys to open the Windows Settings app.
  • Then navigate to this path, Personalization > Start.
  • Next, scroll down to toggle off the “Use Start Full Screen” option.
  • After that, restart your computer and see if the problem is fixed.

Option 2 – Perform a full shutdown

  • Open Command Prompt with admin privileges first.
  • Next, execute this command to perform a full shutdown: shutdown /s /f /t 0
  • The command you entered will shut down your computer and once it’s turned off, wait for a couple of minutes and then turn it back on.

Option 3 – Try to perform a two-button restart on your Surface device

  • Tap and hold the power button for about 30 seconds.
  • Then release them after 30 seconds.
  • After that, tap and hold the volume up + the power button for 20 seconds. This will cause the display to flash a few times but you have to keep those buttons pressed until your Surface device is turned off.
  • Wait for a couple of minutes and your Surface will turn back on. This should resolve the problem.

Option 4 – Try to disable the Tablet Mode via Registry Editor

  • In the Start Search, type “registry editor” and right-click on the Registry Editor from the results, and then select the Run as administrator option. This will open the Registry Editor with admin privileges.
  • Next, navigate to this registry key: ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionImmersiveShell
  • From there, look for the DWORD named “SignInMode” and double click on it.
  • Set its value to “1” and its base as hexadecimal.
  • After that, click on OK to save the changes made. This will make sure that you are signed in to the desktop mode when you log into your account.
  • Now look for the DWORD named “TabletMode” and double click on it and set its value data to “0” and it's base as hexadecimal.
  • Click on OK to save the changes made and then restart your computer.

Option 5 – Run System Restore

  • Tap the Win + R keys to open the Run dialog box.
  • After that, type in “sysdm.cpl” in the field and tap Enter.
  • Next, go to the System Protection tab then click the System Restore button. This will open a new window where you have to select your preferred System Restore point.
  • After that, follow the on-screen instructions to finish the process and then restart your computer and check if the problem is fixed or not.

Option 6 – Try changing the settings in the System tab or the Action Center

  • Go to Settings and navigate to System > Tablet Mode.
  • After that, scroll down to set the “Use desktop mode” from the drop-down menu under the “When I sign in” section.
  • Now restart your computer and see if the issue is fixed.
Read More
How to hide taskbar inside Windows 11
windows 11 taskbarWindows 11 has brought some bad reviews for its inability to change the taskbar location to the screen. Luckily we can still hide it if needed. In order to hide the taskbar from the screen follow these simple instructions:
  1. Right-click the taskbar itself and select “Taskbar Settings” in the tiny menu that pops up or open Windows Settings and navigate to Personalization > Taskbar
  2. Click on Taskbar Behaviors
  3. Check the box next to Automatically hide the Taskbar
  4. Close settings
As soon as you click on the box to hide the taskbar Windows 11 will apply your settings and hide the taskbar, you will get one line at the very bottom of the screen indicating that the taskbar is still present, just hidden. When you reach the bottom of your screen with the mouse it will pop up and be visible again, just like in all Windows so far.
Read More
artstation learning is now free forever
Great news everyone!!! Artstation, a popular learning platform for artists has been acquired by EPIC and their first move was to make artstation learning material free for all registered and non-registered users forever. This move by EPIC is a great but also logical one as well. How the industry is in demand for good artists, providing them with free education will hopefully produce some good talent. artstation learningSo if you ever wanted to learn about photoshop, maya, substance, unreal engine, or some general skills like sketching, drawing, etc. Now is the perfect time to level up your skills. Drop to the artstation website and start learning today!
Read More
How to Fix ACPI_BIOS_ERROR in Windows 10
BSOD or Blue Screen of Death errors are one of the most common errors you can encounter on your Windows PC. One of these BSOD errors is the “ACPI_BIOS_ERROR”. If you suddenly get this error, it means that there is some problem in booting the operating system from your hard drive or Windows was not properly installed on your PC. In addition, this error could also mean that there is something wrong with the CMOS battery located in the motherboard. Unlike other BSOD errors, the workaround for this error is a bit different as these workarounds require a bit more expertise in updating the BIOS as well as setting the correct boot configuration. If you know are capable enough in troubleshooting the problem, refer to the instructions laid out below to fix the BSOD “ACPI_BIOS_ERROR”.

Option 1 – Try to remove the SSD and update the BIOS

The first thing you have to do is to check the primary storage devices on your PC. If you have just installed a new hard drive or SSD recently on your computer, then it’s most likely the cause of the BSOD error. Moreover, you should also ensure that your BIOS is up-to-date to the latest available build.
  • Remove the SSD/HDD and inject a different HDD that was already preinstalled in your Windows PC.
  • After that, update the BIOS to the latest available build. After updating it, insert the old SSD/HDD and then try to boot your PC again. The problem should be fixed now. If not, refer to the next given option.

Option 2 – Try to check the CMOS battery and reset the CMOS module

As mentioned earlier, the CMOS battery might also be the one that’s causing the problem. It is a physical component of the motherboard and is a memory chip that contains all the settings configuration on your computer and is also powered by a battery. So if your battery loses power, the CMOS will be reset and as a result, all the configurations will be gone as well. It is also possible that the CMOS module is not properly working and every time things are saved, they are properly written due to the battery. That’s why you have to consider changing the CMOS battery and see if it fixes the problem. In addition, you also have to make sure that you completely reset the CMOS module and then try booting your PC again.

Option 3 – Try to check the BIOS settings

If the BIOS settings are incorrect, chances are that’s the reason why you’re getting the “ACPI_BIOS_ERROR” BSOD error. Every BIOS has different settings which you can make use of to enhance your computer experience. So make sure that your BIOS is up-to-date and that the settings are in accordance with your requirement. Another thing you can try is to disable the Legacy USB and the Legacy BIOS in the BIOS settings if you are trying to install a 64 bit Windows version. Make sure that you also enable AHCI before plugging in the installation drive on your PC. Moreover, ensure that your PC is using IDE or Integrated Drive Electronics mode instead of SATA or Serial Advanced Technology Attachment. Aside from that, try to check the extracted setup if it is in NTFS format, if it is, you should extract the ISO in FAT32 and use it to install Windows.

Option 4 – Try to reset the ACPI Compliant Control Method

ACPI or Advanced Configuration and Power Interface provide an open standard that operating systems can use to detect hardware, perform power management, as well as monitor the status of your device and provide information for other processes. Chances are, there are some misconfigurations with this module on your PC that lead to believing that there is no battery present. That’s why you need to reset it and see if it fixes the BSOD error or not.
  • Boot your PC into Safe Mode.
  • Tap the Win + R keys to open the Run dialog box.
  • Type in “devmgmt.msc” in the field and tap Enter to open the Device Manager.
  • After opening the Device Manager, go to the “Batteries” section and click it to expand it and then right-click on the “Microsoft ACPI-Complaint Control Method Battery” option and click on Uninstall.
  • After you disable the module, click on any empty space and then click the “Scan for hardware changes” option.
  • Then check if you can now boot your PC normally and without the BSOD error.
Read More
Delete a Volume or Drive Partition in Windows 10
Operating systems now give users a feature that allows them to create separate partitions out of HDD or SSD-based storage in order to store data in an organized manner. This small yet powerful feature has always been supported by Microsoft. However, there are times when users might fill up on some particular very soon. This may result in the lack of space for that partition which makes the entire process of using PCs slower since there is a large chunk of files that has to be indexed in a smaller partition. If you are one of the users experiencing this dilemma, you need to either delete the other partitions to allocate their storage to the partition that is short on storage or simply recreate the partition so that all the useless data will be deleted and you can start afresh with the overflowing partition. In this post, you will be guided on how you can delete any storage partition from your Windows 10 PC via Disk Management, Command Prompt as well as Windows PowerShell.

Option 1 – Delete storage partition via Disk Management

This is one of the simplest ways you can use to delete a storage partition. Go to the WinX Menu and from there, open Disk Management and then select the Drive you want to get rid of, right-click on it and then select Delete Volume.

Option 2 – Delete storage partition via Command Prompt

  • Tap the Win + X keys or right-click on the Start button and select Command Prompt (Admin) or you could also type in “cmd” in the Cortana search box and right-click on the Command Prompt icon and then select the “Run as Administrator” option from the context menu.
  • Once you have Command Prompt pulled up as admin, type in and enter this command – diskpart
  • After entering this command, the Diskpart Utility will start. Diskpart Utility is a command line-based utility just like Command Prompt but it will get a UAC Prompt after you invoke it so you have to click Yes for the UAC Prompt.
  • After that, type in list volume and tap Enter to see the list of all the partitions created on your PC. This includes both types of partitions that are visible to a normal user in the File Explorer as well as the ones that are created by Windows 10 by default which helps it in storing the boot files and other essential system files.
  • You should see a list of all the partitions made on your computer. Select the partition you want to delete by its Unique Identification number as Volume X where X denotes the Unique Identification Number.
  • Next, type in the select volume number command and hit Enter to select the desired volume.
  • Then delete the volume you’ve selected and type in the delete volume command and hit Enter to delete the volume you just selected and convert it into unallocated space.

Option 3 – Delete storage partition via Windows PowerShell

  • Start by tapping the Win + X keys or simply right click on the Start button and select Windows PowerShell (Admin) or you could also type in “windows powershell” in the Cortana search box and right-click on the Windows PowerShell icon and select the “Run as administrator” option.
  • Once you’ve opened the Windows PowerShell, type in the Get-Volume command and hit Enter to get a list of all the partitions on your PC.
  • Next, select the drive letter you want to delete and then type in the Remove-Partition –DriveLetter command and hit Enter to delete the selected partition. Note that you need to replace the drive letter with the letter of the partition you want to get rid of.
  • After that, it will ask you for confirmation. Just hit the Y key for Yes or hit the A key to say Yes to All. This will delete all the partition you’ve selected and will move them in as unallocated space.
And that’s how you delete a Drive Partition or Volume in Windows 10. Note that you should only follow the last two options given in case the Disk Management is not able to fulfill the user requirements.
Read More
Fix Broadcom BCM20702A0 driver error
In recent times, some Windows 10 users have seen an error code BCM20702A0, when using Bluetooth and they are concerned as to what it is all about. We can say for certain that it has something to do with your Bluetooth driver. The error message in question is:
The drivers for this device are not installed. There are no compatible drivers for this device.
The problem here tends to no longer allow specific Bluetooth components to properly communicate with your Windows 10 operating system. It also affects laptops that do not have native Bluetooth support; therefore, the manufacturer installed a dongle on the inside to deliver the service. This is not the best way to do things because native support is always better. On the other hand, maybe you’re using a Broadcom USB Bluetooth dongle that is acting up, and as such, the error is showing. Below are solutions provided for this particular error and how to eliminate it.
  1. Run the Bluetooth Troubleshooter

    Press ⊞ WINDOWS to open the menu and select settings In settings choose Update & Security Go to troubleshoot and on the right panel click on additional troubleshooters Click on Bluetooth Select Run the troubleshooter, then sit back and allow the tool to do its thing. Once you’ve completed the task, click on Apply this fix if any repairs are needed Reboot your computer
  2. Install Broadcom driver from official website

    Windows drivers for Broadcom Bluetooth devices are no longer posted on their website. They should be available through Microsoft’s Windows Update service. If drivers were not downloaded automatically by Windows Update, use Device Manager to refresh the driver from Windows Update. However, the Broadcom Bluetooth drivers seem to be available here on the Lenovo website. To fix the BCM20702A0 driver error, you may download and install them. After downloading it, right-click on the downloaded item, and select Run as administrator. After installation, restart your computer, then check again if it works.
  3. Remove all Bluetooth drivers and USB controllers

    If previous solutions did not work, go to device manager and remove all Bluetooth devices along with all USB controllers. Reboot your computer and Windows will automatically reinstall and set all devices.
Read More
Chrome features that you need to use

Google Chrome is the most used browser in the world with the most user downloads. Most users are using browsers how it is, open it up and just surf but Chrome offers more than just plain surfing. Here we are presenting you with some interesting features that most users do not use but should.

google chrome

Use Omnibox to search inside websites

Chrome's Omnibox, also known as the address bar got its name because it can do much more than just search the internet. You already probably know that just by typing any word you will search the internet with Google or another search engine of choice.

You can also set specific keywords inside Chrome settings to tie them with specific websites, for example, you can tie the letter E with errortools, and then just by typing E windows error you will search term windows error on website errortools. There are some already predefined things and you can add anything you want so this is a great feature in order to speed up your work skipping part of actually opening the site.

Search the internet for selected text

On any webpage, you can simply select any text and right-click on it to get a new menu entry that will say search Google for "your selected text" and by clicking on it you will automatically search the net for the selected term.

Grouping tabs

When we surf the internet some of us tend to have plenty of open tabs and over time they can clutter and shrink in width making the surfing experience an unpleasant one.

Chrome has tab groups and you really need to start using them since you can organize much better all the tabs, even color-code them.

Search all open tabs

On top right part on title bar right next to minimize button there is small arrow pointing down, once you clik on it all opened tabs will be displayed by name as a listand by clicking on it you will automatically switch to it.

Change download location

Google Chrome has its default download destination but you can change that destination and even turn on option to be asked where you would like your download to be saved each time.

Live Captions

YouTube has cations for its videos but Chrome itself has live caption option in order to provide you with automatic AI captions for any type of video or audio on any website. If you are struggling with following what is being said try this awesome option.

Extensions

Using extensions in Chrome is awesome, specialy if extensions are usefull but if you go incognito they are not active. There is an option in Chrome to turn on the extensions even in incognito mode and even better, you can even choose which ones you want to be active, you do not need to turn all of them.

Read More
1 2 3 171
Logo
Copyright © 2023, ErrorTools. All Rights Reserved
Trademark: Microsoft Windows logos are registered trademarks of Microsoft. Disclaimer: ErrorTools.com is not affiliated with Microsoft, nor claims direct affiliation.
The information on this page is provided for information purposes only.
DMCA.com Protection Status