I have just installed Ungoogled Chromium for the first time on Ubuntu MATE 20.04 from OBS Production Project, and the first thing I've noticed that, there are two extensions that cannot be removed.
1, CryptoTokenExtension
2, Chromium PDF Viewer
Now I'm OK with the PDF Viewer but would like to remove CryptoTokenExtension if there is a way. I've gone through the closed issue #944 but didn't see any way to remove the extension.
Thanks alot.
From a purely technical standpoint, yes. You can remove its files and its references from the source code and rebuild the browser.
I don't know the specifics for CryptoTokenExtension, but this is what you need to do to remove a built-in extension:
.grd) filesIDR_* constants from the C++ code that you just removed from the GRIT files above. To do this correctly, you'll need to remove the code that loads the extension during startup, and any other Chromium code that interacts with the extension (e.g. for CryptoTokenExtension, is there a 2FA browser interface that connects with it?)Hopefully this answers your question.
Most helpful comment
From a purely technical standpoint, yes. You can remove its files and its references from the source code and rebuild the browser.
I don't know the specifics for CryptoTokenExtension, but this is what you need to do to remove a built-in extension:
.grd) filesIDR_*constants from the C++ code that you just removed from the GRIT files above. To do this correctly, you'll need to remove the code that loads the extension during startup, and any other Chromium code that interacts with the extension (e.g. for CryptoTokenExtension, is there a 2FA browser interface that connects with it?)Hopefully this answers your question.