Skip to content

Commit 82703a6

Browse files
authored
Document how to manage plugins and extensions (#6909)
* Add docs for plugins * fix some wording
1 parent 7c1d887 commit 82703a6

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

docs/source/configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
:caption: Configuration
55
:maxdepth: 1
66
7-
config_overview
7+
configuring/config_overview
8+
configuring/plugins
89
Security <https://jupyter-server.readthedocs.io/en/stable/operators/security.html>
910
extending/index.rst
1011
```
File renamed without changes.

docs/source/configuring/plugins.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Managing plugins
2+
3+
Notebook 7 uses the same extension system as JupyterLab. An extension can provide multiple plugins.
4+
5+
```{note}
6+
See the [JupyterLab documentation](https://jupyterlab.readthedocs.io/en/latest/user/extensions.html) to learn more about the extension system.
7+
```
8+
9+
## Examples
10+
11+
### Disabling the download button
12+
13+
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.
14+
15+
To disable the download entry of file browser context menus, open a terminal and run the following command:
16+
17+
```text
18+
jupyter labextension disable @jupyterlab/filebrowser-extension:download
19+
```
20+
21+
Then restart the application and refresh the page.

0 commit comments

Comments
 (0)