How to completely remove a gnome shell extension?

From Gnome shell page It says:

There are some bugs in GNOME 3.2 that prevented uninstallation from working properly for some extensions. GNOME Shell 3.2.2.1 has fixed these problems. Make sure your system is fully updated if you are having issues uninstalling extensions.

If you do not have GNOME Shell 3.2.2.1 and may be unable to get it, or are unsure, you can uninstall the extension manually. Remove the extension's directory, and then restart the Shell. The extension should be stored under ~/.local/share/gnome-shell/extensions. Removing the directory won't be enough: you will need to restart the Shell to make sure the extension is completely uninstalled: open the run dialog with Alt+F2, and enter restart.

So, You'll Be Fine removing extension under ~/.local/share/gnome-shell/extensions manually.


OK, found it. In https://extensions.gnome.org, navigate under Installed extensions, where there is an X button next to each extension that uninstalls it. As mentioned in the previous answer, that only works after version 3.2.2.1.

enter image description here


The extensions form 'fmuellner' seem to get stored in a directory "/usr/share/gnome-shell/extensions/" and other extensions get stored in a directory "~/.local/share/gnome-shell/extensions". I too had this problem before. I solved it by deleting these directories and restarting the computer. You cannot delete them from the file browser or explorer. So, super user permissions are required to delete them. Use the following command in the terminal. $ sudo rm -r /usr/share/gnome-shell/extensions/ $ sudo rm -r ~/.local/share/gnome-shell/extensions/

and then to restart computer from the gui or you can use $ sudo init 6

Careful not to delete other directories by mistake. The above fix worked for me. Hope that helps.