2

I am trying to install moonlight on my 13.04 64-bit ubuntu system. I am using chromium as my main browser and firefox as backup.

I read that to install the moonlight downloaded .crx file in chromium, first I have to extract the .crx contents.

Can someone help me with the how-to to extract .crx file?

Also, is there an easier way of installing moonlight? And would my install cater to both of my browsers?

charlie
  • 1,792

2 Answers2

1

If you point Firefox to http://www.mono-project.com/Moonlight/, get to the download page and click on download after selecting the 64bit architecture, it will automatically install the extension.

Chrome/Chromium/Iron, on the other hand, will prevent the .crx extension to be installed automatically.

In this case, after you have downloaded the .crx file from the Moonlight download page (using Chrome), go to the Tools | Extensions configuration page, and then drag the .crx file onto the Chrome extensions page. It will ask for your permission to install the extension.


The .xpi extension package "is simply a ZIP file containing the extension files", so you can open it just like any other .zip file. Note that you might need to change the extension of the file to .zip, depending on the method you use to extract the files.

One simple way to extract the contents of a downloaded .xpi, is with the use Midnight Commander, which can be easily installed:

sudo apt-get update && sudo apt-get install mc

Navigate to the folder where the file has been downloaded and it can be opened like a folder and its contents copied out with F5.

carnendil
  • 5,451
  • 1
    Once done installing, one can check if the silverlight functionality is working on the browser by using the tests on the page http://www.bubblemark.com/. Particularly the "Silverlight 3.0 (CLR, CacheMode="BitmapCache") new" test to check the SIlverlight 3.0 – charlie May 23 '13 at 04:15
  • 2
    As of July 7, 2013, the link you give for Firefox is broken (403: Forbidden). – BlueBomber Jul 08 '13 at 01:59
  • 1
    As of 2013-07-17, there seems to be no possibility to download. Please check the following addresses: http://www.mono-project.com/Moonlight/ and http://www.mono-project.com/Moonlight/Preview. Also, this link should be helpful: http://www.mono-project.com/MoonlightRoadmap – carnendil Jul 17 '13 at 20:06
  • Why the use of Midnight Commander when xpi files are just zipped directiries? – Braiam Aug 31 '13 at 20:32
  • @Braiam: Thank you for your comment. I put mc for no reason other than simplicity. I have updated my answer to reflect the fact that any method to open a .zip file is valid. – carnendil Sep 02 '13 at 16:13
-1

Type

sudo apt-get install mono-complete

then install the crx extension in the extensions page of chrome

Braiam
  • 67,791
  • 32
  • 179
  • 269