0

I just installed Ubuntu 20.04 and I am trying to install extensions from https://extensions.gnome.org/. I installed the addon for Firefox to load them from the browser, but when I turn the extension on, nothing happens. No error and no message at all.

I tried these things:

  1. Install gnome-shell-extensions:

    sudo apt install gnome-shell-extensions
    
  2. Install chrome-gnome-shell:

    sudo apt install chrome-gnome-shell
    
  3. After that I installed the GNOME Tweaks tool as follows:

    sudo apt install gnome-tweaks
    
  4. Open the GNOME Tweaks tool as follows:

    gnome-tweaks
    

This happens while trying to install dash to dock (https://extensions.gnome.org/extension/307/dash-to-dock/)

K. Gero
  • 11
  • How does your question differ from this one? – kanehekili Nov 18 '21 at 19:18
  • 1
    I honestly don't know why I am getting only negative responses at this specific stackexchange site. I tried installing it manually as well but still didn't get any result as why I was brave enough to ask it here. – K. Gero Nov 18 '21 at 19:23
  • 1
    Welcome to Ask Ubuntu! Can you be a bit more specific and tell us which extensions you have problems with? If the extensions don't work, perhaps we can suggest alternatives that do. Please [edit] your question to add this info! – BeastOfCaerbannog Nov 18 '21 at 20:08
  • @kanehekili The question you linked is about 21.10 which introduced GNOME 40. This one is about 20.04 which uses GNOME 3.36. Hence they are different questions. – BeastOfCaerbannog Nov 18 '21 at 20:15
  • I tried installing dash to dock – K. Gero Nov 18 '21 at 20:46
  • When you clicked to install Dash to dock, did you get a pop up window and click Install? Is the extension showing in Tweaks -> Extensions? – BeastOfCaerbannog Nov 18 '21 at 20:56
  • Nope, I'm getting zero interaction when turning it on. It also doesn't appear in the tweaks extensions menu – K. Gero Nov 18 '21 at 21:21
  • ¹K.Gero - I apologize - My comment wasn't correct. I checked my installation: I did not install "dash to dock", but to get the extensions I installed the "browser extension" via the link you described. (I used Firefox). All "on" extensions can be seen in tweaks. – kanehekili Nov 18 '21 at 21:54
  • Maybe this could work: https://micheleg.github.io/dash-to-dock/download.html – evening_g Nov 18 '21 at 21:58
  • After installing it via git it seems to appear, although now it says error loading extension next to it resulting in me not being able to do anything with it yet – K. Gero Nov 18 '21 at 22:05
  • K. Gero, you aren't using Firefox via Snap by any chance are you? My understanding is that the Snap version of Firefox does not support Gnome Extensions. – KneadToKnow Nov 18 '21 at 22:18
  • I'm using the default installed firefox, I tried it with chrome and got the same result (nothing) as well though – K. Gero Nov 18 '21 at 22:26
  • Can you install other extensions normally or does this problem only happen with Dash to dock? – BeastOfCaerbannog Nov 19 '21 at 08:50

2 Answers2

1

If anyone encounters this problem, I was able to solve it the following way:

  1. First I removed the extension from everywhere so I made sure I'm starting out clean.

  2. Then I downloaded the extension from it's GitHub repo via:

    git clone https://github.com/micheleg/dash-to-dock.git
    
  3. After all these, I installed the extension manually by doing the following:

    cd dash-to-dock
    git fetch --all
    git checkout origin/gnome-3.34
    

    (for me it was working with this 3.34 branch)

    make
    make install
    
  4. Finally, I pressed Alt+F2 and entered r.

K. Gero
  • 11
0

For me the instruction here solved the similar problem.