Distribuir o add-on do Firefox internamente

2

Nós (empresa) estamos desenvolvendo um addon do Firefox destinado a facilitar o trabalho realizado em um departamento. O addon foi desenvolvido para se comunicar especificamente com nosso software.

Eu queria saber se há uma maneira de distribuir esse addon internamente, de um servidor local, em vez de publicá-lo no AMO ( link ). Seria bom se os funcionários internos pudessem direcionar o nosso servidor para que quaisquer alterações na extensão fossem automaticamente atualizadas nas máquinas clientes.

É possível? Você poderia me fornecer algumas orientações sobre isso? Obrigado.

    
por LcSalazar 05.02.2015 / 12:53

1 resposta

1

Existe uma maneira de distribuir um addon internamente de um servidor local

instead of publishing it to AMO (https://addons.mozilla.org/)

Você pode fazer isso especificando um updateURL no manifesto de seu anúncio. em.

A verificação periódica de atualizações também pode ser feita manualmente pelos usuários finais.

Verificação automática de atualizações de complemento

Applications will periodically check for updates to installed add-ons by retrieving the updateURL. The information returned can be used to notify the user of an updated version to the add-on as well as inform the application of new application versions that the add-on is compatible with.

Fonte Atualização, atualização e compatibilidade de extensões

updateURL

A link to a custom Update Manifest file that specifies available updates to the add-on. The format is described below. If enabled, the add-on manager periodically checks with this Manifest file to determine if newer versions are available. When not included, the add-on manager will still check for updates on AMO, using the ID of the extension.

...

Examples

<em:updateURL>http://www.foo.com/update.cgi?id=%ITEM_ID%&amp;version=%ITEM_VERSION%</em:updateURL>
<em:updateURL>http://www.foo.com/extension/windows.rdf</em:updateURL>

For add-ons hosted on addons.mozilla.org: You may not specify an updateURL property. By default, Mozilla applications using the Add-on Manager (such as Firefox and Thunderbird) will send update requests to addons.mozilla.org using the default web service. Every time you upload a new version of your add-on or change its compatibility parameters through the author interface, your update manifest will be generated automatically.

Format of the Update Manifest:

The Update Manifest is a RDF/XML datasource. For an example of an update manifest, see Extension Versioning, Update and Compatibility.

Fonte updateURL

    
por 05.02.2015 / 14:16