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.
1 How to Enable Manifest V2 in Chrome 150
Chrome 150 is the last version to support Manifest V2.
Add the following parameters to the command line to enable Manifest V2 support:
--disable-features=ExtensionManifestV2UnsupportedSince Chrome 150 forcibly disables Manifest V2 extensions, you may need to re-enable them every time you launch the browser.
Open the
chrome://extensionspage.Press
F12orCtrl+Shift+Ito open Developer Tools, then pressCtrl+Shift+Cand 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.
<cr-toggle id="enableToggle" aria-describedby="a11yAssociation" aria-label="Off" role="button" tabindex="-1" disabled aria-pressed="false" aria-disabled="true">
2 How to Enable Manifest V2 in Chrome 151
There are some alternative methods to enable Manifest V2, though I have not personally verified them.
Memory Modification Method (does not modify
chrome.dll):
https://github.com/onlytrisdev/chrome-enable-mv2Chrome Patching Method:
https://github.com/Sketchystan1/chrome-mv2-patch
3 Reference
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


