How to keep using adblockers on Chrome and other chromium browsers?

!After one of the updates in Google Chrome, as well as other browsers based on it, the work of ad blockers, as well as extensions that can change the content of pages, could be disrupted.

To restore support for browser extensions that block ads, just follow our short instructions.

To restore the ad blockers in browsers, just follow the next steps:

  1. At first, in Powershell launched as administrator, execute the command:

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for the Chrome browser

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Chromium"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for Chromium browser

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for Edge browser

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\BraveSoftware\Brave"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for Brave browser

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Vivaldi"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for the Vivaldi browser

    $path = "registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\YandexBrowser"; New-Item $path -Force; Set-ItemProperty $path -Name ExtensionManifestV2Availability -Value 2 - for Yandex browser

  2. After executing the command, the browser should be restarted.
  3. The final step is to reload the rules.

    For example, in Chrome you can do this by going to the policy settings chrome://policy/ and clicking Reload policies.

Don't hesitate to contact us if you have any questions!

  Ask Question

Read More

Got Something To Say?

Your email address will not be published.