Enable manifest v2 in Chrome 150

Recently, I upgraded Chrome to version 151. After the upgrade, I found that the previous methods no longer worked to enable Manifest V2, and uBlock Origin could not be enabled.

Starting from Chrome 151, Manifest V2 is completely unsupported. Additionally, Manifest V2 extensions have been removed from the Chrome Web Store since August 31, 2026.

Ultimately, I downgraded to Chrome 150, but some features still failed to work properly—the integrated Google AI search button disappeared, and the Live Caption feature stopped functioning.

Fortunately, Firefox has no plans to deprecate Manifest V2. In the future, I will choose Firefox to run Manifest V2 extensions (such as uBlock Origin) specifically for watching YouTube, while leaving Chrome for occasional updates.

Chrome 150 is the last version to support Manifest V2.

Add the following parameters to the command line to enable Manifest V2 support:

text

 --disable-features=ExtensionManifestV2Unsupported

Since Chrome 150 forcibly disables Manifest V2 extensions, you may need to re-enable them every time you launch the browser.

  1. Open the chrome://extensions page.

  2. Press F12 or Ctrl+Shift+I to open Developer Tools, then press Ctrl+Shift+C and hover over the extension toggle button. Delete the "disabled" attribute from the code block below. This makes the toggle clickable again, allowing you to re-enable the extension.

    Chrome 150 enable manifest v2 extension
    extension enable button

    chrome 150 enable manifest v2 extension

    html

    <cr-toggle id="enableToggle" aria-describedby="a11yAssociation" aria-label="Off" role="button" tabindex="-1" disabled aria-pressed="false" aria-disabled="true">

There are some alternative methods to enable Manifest V2, though I have not personally verified them.

https://www.reddit.com/r/uBlockOrigin/comments/1ukq0hf/ubo_can_work_on_chrome_150_if_you_already_have_it/

https://www.reddit.com/r/chrome/comments/1ty3xwk/bad_news_starting_with_chrome_151_no_longer/

https://www.reddit.com/r/uBlockOrigin/comments/1tlkaaw/goodbye_chrome_version_150_removes_the/

https://github.com/Sketchystan1/chrome-mv2-patch/blob/master/mv2-reversing.md

https://github.com/onlytrisdev/chrome-enable-mv2

https://github.com/Sketchystan1/chrome-mv2-patch

https://github.com/e3kskoy7wqk/Chromium-for-windows-7-REWORK/issues/79

https://github.com/r58Playz/uBlock-mv3

Related Content