File: plugins.md

package info (click to toggle)
jupyter-notebook 7.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,116 kB
  • sloc: python: 544; javascript: 410; makefile: 182; sh: 51
file content (21 lines) | stat: -rw-r--r-- 791 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.