Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

firefox add-on vs. extensions vs. plugins

I want to write scripts for firefox. It seems that firefox has different terms, like add-on, extensions, plugins. and I have a feeling they're not all the same. Can you sum up the difference between in a few words?

like image 379
sameold Avatar asked Sep 27 '11 21:09

sameold


People also ask

What is the difference between addon and plugins?

A plug-in, which can also be called an add-on or an extension, is third-party software that adds new functions to a host program on a computer, without altering the host program. Basically, they allow you to add new components to a host program or extend its capabilities beyond its original design.

What happened to Firefox add-ons?

In October 2018, all legacy add-ons were disabled on addons.mozilla.org (AMO). Users will no longer be able to find legacy add-ons on AMO.

What is the purpose of browser plug-ins and add-ons?

Applications and browsers support extensions, add-ons, and plug-ins for multiple reasons: to allow third-party developers to create specific functions, to easily add new features, and to expand functionality.

What are add-ons in Firefox?

Extensions add new features to Firefox or modify existing ones. There are extensions that allow you to block advertisements, download videos from websites, integrate Firefox with websites like Facebook or Twitter, and add features included in other browsers, such as translators.


1 Answers

Add-on: essentially anything that can be installed into the browser. This includes for example extensions, themes, plugins, dictionaries, language packs, search engines.

Extension: a package extending browser functionality, the extension format used by Firefox works in Gecko-based browsers only. Extensions typically use XUL and CSS for their user interface as well as JavaScript for dynamic actions. They have full access to XPCOM and can provide their own XPCOM components as well. Recently the Add-on SDK has been added as an alternative way to generate simple extensions, it uses HTML instead of XUL but limits the ways in which the browser's user interface can be extended significantly. As of Firefox 57, all extensions have to be based on the WebExtensions API.

Plugin: means NPAPI plugins that are supported by all browsers but Internet Explorer (the latter uses the proprietary ActiveX technology instead). Such plugins are binary libraries that are invoked if a website uses an <embed> or <object> tag with a type that is handled by the plugin. The plugin can either draw some content for the tag (windowed plugins) or stay in background and simply provide an API for the webpage's JavaScript code to use (windowless plugins). Typical examples are Flash or Silverlight. Support for plugins is being phased out, as of 2018 Flash is the only plugin still supported to some degree.

like image 93
Wladimir Palant Avatar answered Sep 22 '22 04:09

Wladimir Palant