How we can permanently remove extension Manager (ICON) from jupyter Lab UI

How we can permanently remove extension Manager (ICON) from jupyter Lab UI , Not from the setting tab so that it is not visible from UI .

.

Please refer attached screenshot marked in RED I need to remove permanantly

One way to do it would be to disable the extension manager plugin with the following command:

jupyter labextension disable @jupyterlab/extensionmanager-extension

Then check it is disabled with:

jupyter labextension list

There is some documentation about this as well as using configuration files to achieve the same result:

https://jupyterlab.readthedocs.io/en/stable/user/extensions.html?#enabling-and-disabling-extensions

3 Likes

Thank you very much !!

It work as expacted…

Great that it worked!