Google Chrome's extensions are purely based on HTML, CSS and some custom Javascript. That's incredibly limiting, especially when you're talking about UI manipulation. When you're creating Firefox extensions, you're writing the same native language (XUL) that the Firefox developers use to add features to Firefox itself.
Chrome's extensions only have similar capabilities as Mozilla JetPacks have.
No, Chrome's extensions are basically the same as GreaseMonkey scripts (at least, that's the frequent comparison I've heard). Firefox's extensions have the full power of XUL and can radically change the browser.
engage beating a dead horse here
The lack of functionality in Chrome extensions is why I (and judging from the comments I've seen in most Chrome vs Firefox threads, many other HNers on Firefox) refuse to switch to Chrome despite its much touted speed. Until I can get Pentadactyl and TreeStyleTab, its just a downgrade in usefullness.
It's possible to write Firefox extensions in JavaScript that are a lot more powerful than Chrome extensions (or webextensions, which are the Firefox equivalent of Chrome extensions) are. That capability is slowly being phased out, though.
A lot of Chrome's extensions don't integrate well with the browser itself. They feel a lot like bookmarklets rather than an actual extension of the browser (this is by design). Firefox extensions can be very well integrated. For example, NoScript on Firefox far exceeds the quality any of the alternatives on Chrome.
Simply put, Chrome extensions are HTML/CSS/JS, while Firefox extensions can actually manipulate the interface of the browser to a greater degree (making stuff like Vimperator possible when it wouldn't be possible on Chrome)
Difficult. Basically Firefox XUL allows extensions to do everything that is not forbidden, while the Chrome allows only things that have an explicit API function for it.
The add-on ecosystem of Chrome currently dwarfs Firefoxes. Firefox extensions used to be more capable, but there's just more and certainly more NEW ones for Chrome.
(I'm sure this was an important consideration for Mozilla as well - it reduced the supposed value of their "more powerful" XUL extension system, as in practice you can often find a Chrome extension to do what you want, but not a Firefox one)
WebExtensions are a superset of what Chrome does. Things like tree-style tabs will be possible in Firefox with the new extension system, for instance.
There are already several WebExtension APIs implemented that Firefox supports that Chrome does not, the difference now is that APIs are being built specifically for extension authors to use, rather than Firefox internals being directly accessible (which certainly allows you to modify anything, but is intractable to maintain backwards compat and secure).
Many authors of popular extensions are working on specifying and prototyping the APIs they need.
Is it easier to develop extensions for chrome than it is for firefox? I'm a firefox user and only find this kind of extensions for chrome. Or are all the cool kids using chrome these days?
I understand (and applaud) the mission to make a cross-browser compatible, predictable format for extensions. What I don't understand is why Firefox is apparently introducing some of Chrome's more weird limitations with it as well:
E.g., XUL add-ons were free to add as many toolbar buttons and menu items as necessary; WebExtensions are restricted to a single button.
Likewise, Firefox had a well-functioning way for extensions to access page JS. This is now replaced by Chrome's awkward approach of injecting script elements, sending messages and praying that no collisions occur.
This is really just about writing a browser extension that injects code into a page and does nothing else. Firefox extensions can do all sorts of things (modify the browser UI, call functions in system libraries, create protocol handlers, perform raw IO) that other environments don't permit.
Many of these things probably can't be done through Jetpack/Add-on SDK, but, for better or for worse, Firefox's extension mechanism is vastly more powerful than that of Chrome or Opera.
The main difference between Chrome and Firefox extensions is that Chrome uses a callback-based API while Firefox's is based on promises. Other than that they're functionally the same aside from some differences in the manifest and the namespace (Chrome uses `chrome` while Firefox uses `browser`). I think Firefox has some backwards compatibility with the callback interface for easier porting but I haven't tried.
There's a nice polyfill by Mozilla so you can use their promise interface in Chrome but it was missing some important apis last I checked (sessions and optional permissions). https://github.com/mozilla/webextension-polyfill
Have you ever tried to develop a old-school-style Firefox extension?
I made an extension in both browsers three years ago. It took me a week to make the Firefox extension and one day to make the Chrome extension. Chrome extensions are basically websites.
I also think Chrome's permissions based system is superior from a user-security standpoint.
Chrome extensions have a fairly limited API that lets you do some pre-approved things using an HTML/CSS UI.
Firefox, on the other hand, provides full access to its internal modules; a lot of the browser itself is built on JavaScript and XUL (the UI language) and extensions are essentially on equal footing in that regard: they can extend and even replace a lot of the browser.
A good example is sqlite-manager, which is essentially a simple but full-blown database manager which can read and edit SQLite databases, since it has filesystem access.
There's also the oldish Chatzilla, which can connect directly to IRC servers (a Chrome extension can only connect to HTTP or websocket servers). And It's All Text! which can launch a local text editor to edit a textarea field.
I do a lot of Firefox extension development. Many companies or users have a need for highly specialized functionality built into a browser, and Firefox provides an very rich platform for that. You can easily build powerful applications that integrate tightly with Firefox.
Chrome's extension capability is much lighter and more restricted; Chrome extensions are just light little packets of functionality that add to the browser. There's many things that you can't do that you could do in Firefox.
I think that area is definitely where Firefox wins, and will probably continue winning in the future.
Does everyone need that, and is it enough to keep a large market share? I don't know...but it is something that Firefox does better.
I work on an extension for Chrome, Opera, Safari, and Firefox that's pretty widely used. Firefox (Jetpack) is so different from the rest that I basically hate working on it.
I get that some people may love XUL and whatever, but having never used it, I can't really comment. All I do know is that Jetpack (which Firefox has been pushing) is a sorry excuse for a way to build extensions after you've worked with Chrome. I really hope WebExtensions makes my life easier soon.
Firefox is also starting its third extension model now. At first it was XUL/XPCOM where extensions could basically hook into ANYTHING in the browser, then there was the Add-on SDK (formerly Jetpack), which is kind of nice, but a lot more limited, and now they're going with WebExtensions, because, well, Firefox basically does nothing but copy Chrome anymore ;)
But yes, that does make it complicated to figure out what's the best way to make stuff for Firefox.
Chrome's extensions only have similar capabilities as Mozilla JetPacks have.
reply