IlyaKirillov / GoUniverse

GNU Lesser General Public License v3.0
60 stars 10 forks source link

Support for Firefox? #70

Open dakling opened 2 years ago

dakling commented 2 years ago

Hi,

I noticed that this extension (which I really enjoy using, by the way) also works very well on Firefox, with only minor changes to manifest.json required. Have you considered submitting it to the Firefox addon store?

As a reference, the necessary changes to manifest.json would be

  1. incognito.split is not supported on firefox, so this attribute must be changed to the default spanning or whatever else makes sense, and
  2. add something like
    "browser_specific_settings": {
    "gecko": {
      "id": "addon@example.com"
    }
    },

    I am not sure what the id should be, but I would speculate that one obtains it during the submission process to the addon store. Without this key, the extension can still be installed as a temporary extension (i.e. for the developer to test before submitting.)

Best, Dario