Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
:caption: Configuration
:maxdepth: 1

config_overview
configuring/config_overview
configuring/plugins
Security <https://jupyter-server.readthedocs.io/en/stable/operators/security.html>
extending/index.rst
```
21 changes: 21 additions & 0 deletions docs/source/configuring/plugins.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Managing plugins

Notebook 7 uses the same extension system as JupyterLab. An extension can provide multiple plugins.

```{note}
See the [JupyterLab documentation](https://jupyterlab.readthedocs.io/en/latest/user/extensions.html) to learn more about the extension system.
```

## Examples

### Disabling the download button

By default Notebook 7 provides a way to download files from the file browser. This functionality consists of a context menu entry and a main menu entry. They are provided by an application plugin that can be disabled.

To disable the download entry of file browser context menus, open a terminal and run the following command:

```text
jupyter labextension disable @jupyterlab/filebrowser-extension:download
```

Then restart the application and refresh the page.