The list of GNOME extensions can be checked using the command:
```[bash]
gnome-extensions list
```
Output:
```[bash]
blur-my-shell@aunetx
compiz-alike-magic-lamp-effect@hermes83.github.com
compiz-windows-effect@hermes83.github.com
```
Or, use the following command to filter extensions that are enabled:
```[bash]
gnome-extensions list --enabled
```
or disabled:
```[bash]
gnome-extensions list --disabled
```
The following code is also useful for displaying a list of enabled extensions in the form of dconfg settings:
```[bash]
gsettings get org.gnome.shell enabled-extensions
```Output:
```[bash]
['gnome-compact-top-bar@metehan-arslan.github.io', 'simplenetspeed@biji.extension', 'netspeed@alynx.one', 'trayIconsReloaded@selfmade.pl', 'generic-monitor@gnome-shell-extensions', 'tweaks-system-menu@extensions.gnome-shell.fifi.org', 'username-in-topbar@neroteam.com', 'huanghaohhoa@163.com', 'CamPeek@gamalsherif1.github.io', 'apps-menu@gnome-shell-extensions.gcampax.github.com', 'caffeine@patapon.info', 'appmenu-is-back@fthx', 'ubuntu-appindicators@ubuntu.com', 'Vitals@CoreCoding.com', 'openbar@neuromorph', 'dock-reloaded@selfmade.pl', 'ding@rastersoft.com']
```