Recommended Posts

A couple of days ago, Mozilla announced they are implementing Chrome's extension API (WebExtensions API) and are expanding it to accommodate some popular extensions (ex. NoScripts, TabMixPlus).  Neowin reported on this.  It sounds like great news, right?  Developers will write one extension instead of re-writing it multiple times.  You can run Chrome or Edge extensions in Firefox.  However, there is something that Neowin left out.  I found this out after some digging.  MOZILLA PLANS TO DEPRECATE XUL/XPCOM IN THE NEXT 12-19 MONTHS!  This is their tradition model, btw.

Keep in mind there are two ways of making extensions, now--XUL Overlays and the SDK.  The overlay is the traditional way and while this is harder to write for, less stable and forward compatible and requires a restart, it is the most powerful.  Compared to the SDK which is closer to Chrome's API.

When people say Mozilla is highly extensible it is because of XUL and XPCOM (there are alternatives to this, btw).  XUL is the mark up language that creates Firefox's UI.  By not using a native layout this allows Add-ons to change the UI and add new UI features on the fly.  This also make makes the browser portable.  The source code doesn't need to be rewritten for each Desktop environment.  XPCOM allows lower level access into Firefox, this can be extended too.  There are alternatives to XPCOM--js-ctype and JSM's.

Removing these could gimp Firefox and stop innovative new extensions from coming in.  Such as the next NoScripts, DownThemAll, or Phenadactyl.  Some people see this as Firefox becoming another Chrome clone, like the author of DownTheMall (http://www.downthemall.net/the-likely-end-of-downthemall/).  However, the author of NoScripts is pretty confident Mozilla can make the WebExtensions API work.  Removing a lot of headaches Firefox Add-on users and developer AND NOT destroy the permissive ecosystem or stifle innovation.  (https://hackademix.net/2015/08/22/webextensions-api-noscript/)  He also has a proposed solution (https://discourse.mozilla-community.org/t/proposal-native-js-to-embrace-extend-the-webextensions-api/3457).  He is a VIP in the Add-on community and Mozilla is working with him on the new API.

Eventually, Firefox is moving to a new rendering engine (Servo) and a dynamic HTML5 UI (browser.html) to replace their XUL layout. (Btw, Vivaldi already has a HTML5 UI as a good example)

Personally, I am not sure what to think.  I think it could improve the extension ecosystem and Firefox in general--if done right.  However, if done wrong, then extensions are no longer an advantage Mozilla has over other browsers.

What do you think about Mozilla changing their Add-on API?

  • Like 1

Awesome!  We all get to have our cake and eat it too.  Firefox users get all of Chrome's goodies and Add-ons like DownTheMall and Greasemonkey.  If I am hearing your right.  I think that not having some type of solution for permissive Plugins would ###### off a lot of people and devs when they wake up one morning to find a lot of their favorite Add-ons not working.

I really don't think this means the death of firefox or anything like that.

The issue is that people who don't want to see Firefox turn into Chrome are so worried about it happening that they see it happening everywhere, whether it's true or not, and whether it's a good thing or not in many cases. In this case Mozilla has made it clear that compatibility with chrome addons is not even their only goal; they have a whole host of desires and goals with this effort, and one of them happens to be making it easier to for Chrome addons to also work in Firefox. But some people don't seem to have noticed the rest of them.

We're caught in a transition period where Mozilla has been making necessary major changes to Firefox, and each time they do so they find that they can't keep things working as they always have. And so rather than spinning their wheels endlessly, they want to try to improve things so they do better next time. They obviously don't have the resources to make these transitions painless for everyone. That's unfair, but that's life. Mozilla has to deal with it, and so do users of its products. Opera gave up and based their new browser on Chromium. Mozilla is clearly doing what they can to avoid that fate, not embrace it.

 

 

I posted this article yesterday regarding this. What he says, makes sense (too me at least).

http://www.dedoimedo.com/computers/firefox-addons-future.html

In all honesty, if they're going to do this, why not just fork Chrome and customize it to their philosophy? They'd save themselves a ton of maintenance work and average joe isn't going to know/care that its just another version of Chrome running under the hood.

If they can implement Chrome's extension support and expand upon it so NoScript/Adblock/ Plus can function as they do now in FF, then I'm ok with the change. If they can't, then why should I continue to use FF? I might as well just install AdGuard and move to Edge. At least then my Favorites will seamlessly move between my PCs

Edited by AR556

they did that for security reasons am i right? 

Security is definitely one of the reasons for the deprecation of XUL. Performance is another.

A more stable API for addons is another. A clean API design would actually allow unmaintained extensions to keep working for example. Currently every Firefox release risks breaking them (and sometimes does).

XUL is an archaic, Mozilla-specific UI technology that literally predates Windows XP. It's a relic of the failed "XML All The Things" era of software development that dominated the early 2000's. XUL and xpcom are not widely used outside of mozilla, not a lot of people have experience with it so it doesn't get the attention that other parts of firefox get.

Maintaining all this backwards compatibility is the primary reason that Mozilla hasn't been able to iterate and improve the performance of the front end UI for many years. The frameworks mentioned were designed decades ago, and aren't easy to optimize for - a lot of iterations on those frameworks (XBL2, XUL2) simply never happened and were made redundant by rapid progress in Web standards and popular web application frameworks.

The deprecation of XUL is a very necessary thing. It won't be a painless transition, but its needed.

Edited by ViperAFK

 

If they can implement Chrome's extension support and expand upon it so NoScript/Adblock/ Plus can function as they do now in FF, then I'm ok with the change.

This is literally exactly what they plan to do... They've mentioned several times that they plan to work with addon authors to extend the API so it can suit their needs.

The new API won't be as powerful as XUL (since XUL can touch just about every single part of the browser), but they definitely plan to expand it beyond the capabilities that are possible in chrome.

This is literally exactly what they plan to do... They've mentioned several times that they plan to work with addon authors to extend the API so it can suit their needs.

The new API won't be as powerful as XUL (since XUL can touch just about every single part of the browser), but they definitely plan to expand it beyond the capabilities that are possible in chrome.

Hopefully, they'll work with addon authors to get at least some of these expansions implemented before releasing into the wild. Releasing a gimped product will hurt them.

Security is definitely one of the reasons for the deprecation of XUL. Performance is another.

A more stable API for addons is another. A clean API design would actually allow unmaintained extensions to keep working for example. Currently every Firefox release risks breaking them (and sometimes does).

XUL is an archaic, Mozilla-specific UI technology that literally predates Windows XP. It's a relic of the failed "XML All The Things" era of software development that dominated the early 2000's. XUL and xpcom are not widely used outside of mozilla, not a lot of people have experience with it so it doesn't get the attention that other parts of firefox get.

Maintaining all this backwards compatibility is the primary reason that Mozilla hasn't been able to iterate and improve the performance of the front end UI for many years. The frameworks mentioned were designed decades ago, and aren't easy to optimize for - a lot of iterations on those frameworks (XBL2, XUL2) simply never happened and were made redundant by rapid progress in Web standards and popular web application frameworks.

The deprecation of XUL is a very necessary thing. It won't be a painless transition, but its needed.

Ehh, primary issue with XUL is really just the age, it's from a time where HTML/CSS couldn't be used to build useful UIs, but since then Mozilla lifted out the XUL layout model and has moved it into plain CSS (It's called Flexbox now), and we're at a point where it can be replaced with plain HTML and CSS. And you've also got things like Web Components and the Shadow DOM that have their roots in XUL/Gecko.

And if you're completely scrapping the existing UI architecture, you're going to break all existing XUL based addons anyway, so why not fix other issues while you're there (Like letting addons poke around the internals with complete freedom and replace internal components).

Really the only problem with using XML as a UI layout language is what happens when you encounter invalid XML, a framework like WPF handles that by compiling the XML to binary code, but in Firefox a bad addon could break the entire UI and turn it into a blank yellow window. That's jut not going to happen with the new system they're planning on, and by using the normal HTML/CSS they use for web content it'll speed up the UI too (Performance work goes into HTML, not XUL, it's much faster)

There are many firefox users that use firefox because of the extensions available, and some of those extensions are not being developed anymore. That means they now have to go through the trouble of signing those extensions by themselves and "soon" (well, we all know that mozilla always meets the deadlines lol)  there won't be a way to make those extesions work, so many users will have a browser that looks like chrome, that runs the same extensions, but is far for being as technically improved as chrome is (64bit browser, html5 support, speed, etc.) so what's the point of using firefox anymore? That's the problem mozilla faces. And when you have such a low % of users, any mistake means you are death (opera)

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Google adds built-in computer control to Gemini 3.5 flash by Karthik Mudaliar Google has added Computer Use as a built-in tool in Gemini 3.5 Flash, giving developers a single model that can reason about a task and operate graphical interfaces across browsers, mobile devices, and desktop environments. The feature is available through the Gemini API and Google’s Gemini Enterprise Agent Platform, although it remains a preview feature for now. Computer Use enables an AI agent to examine screenshots and return actions such as mouse clicks, scrolling, and keyboard input. A developer’s application must execute those actions, capture the resulting screen, and send it back to Gemini, creating a continuous loop until the task is completed. Google says the integration can be used for activities including repetitive form filling, application testing, research across multiple websites, and longer enterprise workflows. Gemini 3.5 Flash can work with browser, mobile, and desktop environments, whereas Google’s earlier standalone Computer Use model was primarily positioned around browser interaction. The main change is consolidation. Computer control was previously offered through the separate Gemini 2.5 Computer Use preview model. As Neowin reported when that model was introduced, it was designed to interpret a visual interface and generate actions without requiring a website-specific API. Google later brought Computer Use to preview versions of Gemini 3 Pro and Gemini 3 Flash in January 2026. The latest release now incorporates the tool into the stable Gemini 3.5 Flash model rather than requiring developers to select a specialized model solely for interface automation. Gemini 3.5 Flash itself was announced in May as Google’s latest fast model for coding and multi-step agent workflows. It supports a one-million-token input context window and up to 65,000 output tokens, along with adjustable thinking levels that let developers trade additional reasoning for lower latency and cost. Google also added that Gemini 3.5 Flash received targeted adversarial training for computer-use scenarios. The company is also offering safeguards that can require user confirmation before sensitive or irreversible actions and automatically stop a workflow when suspected prompt injection is detected. Its developer documentation describes configurable protections for areas such as financial transactions and changes to sensitive records. Google isn't the first to bring Computer Use to its platform. Anthropic has made computer control available through Claude, while OpenAI has continued improving computer-use performance in its recent models. Microsoft has also applied the concept to business workflows, including a Computer Use capability for the Researcher agent in Microsoft 365 Copilot.
    • After I installed KB5095093, the volume on my ARM laptop won't go above 20%. It's stuck on the hearing protection level, which is pretty much useless if you want to listen to anything. I rolled back.
    • Amazon Prime Day slashes Samsung's newest Galaxy Watch Ultra by 45 percent by Karthik Mudaliar Samsung’s flagship Android smartwatch has received one of its steepest Prime Day cuts. Amazon has dropped the 2025 Samsung Galaxy Watch Ultra in Titanium Blue to $357.24, saving buyers around $292 from its $649.99 list price. That's a 45 percent discount (purchase link below). The 47mm Galaxy Watch Ultra uses a titanium casing and a 1.5-inch Super AMOLED display with a resolution of 480 x 480 and peak brightness of 3,000 nits. It includes LTE connectivity, Bluetooth 5.3, Wi-Fi, NFC, and dual-frequency L1+L5 GPS for more accurate outdoor route tracking. The 2025 model has 64GB of storage, a 590mAh battery, sapphire crystal glass, 10ATM water resistance, IP68 protection, and MIL-STD-810H durability testing. Its health and fitness tools include heart rate monitoring, sleep coaching, Energy Score, Running Coach, body composition analysis, temperature sensing, and ECG support, where available. This model is best suited to Android users who regularly run, hike, cycle, or train outdoors and want cellular access without carrying a phone. The larger battery, rugged construction, bright display, and dedicated Quick Button also make it a stronger option than Samsung’s regular Galaxy Watch models for extended workouts and demanding environments. Grab the Titanium Blue Galaxy Watch Ultra before the Prime Day price resets: Samsung Galaxy Watch Ultra (2025) [Sold and Shipped by Amazon] Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • Google begins rolling out its post-Epic Play Store billing model next week by Karthik Mudaliar Google has confirmed that its redesigned Play Store billing and fee structure will take effect on June 30, 2026, in the United States, the United Kingdom, and the European Economic Area. The changes will let eligible developers offer their own payment systems or send users to an external website for purchases, while separating Google’s platform service fee from the cost of using Google Play Billing. The rollout puts concrete dates and detailed rate cards behind the broader Android policy overhaul Google announced in March. That announcement followed a proposed settlement with Epic Games intended to resolve their long-running disputes over app distribution and payments, although the U.S. portion of the agreement still requires court approval. Under the new billing choice program, developers selling digital content or services can display an alternative payment option alongside Google Play Billing. They may also direct users to their own websites to complete a purchase. Developers can use Google’s standard payment-choice screen or design one that complies with the company’s user-interface rules. Choosing another payment processor does not eliminate Google’s cut altogether. The company will continue charging a service fee for transactions associated with apps distributed through Google Play, regardless of whether payment is handled by Google, an alternative provider, or a developer’s website. Google argues that this fee covers the value and infrastructure provided by Android and the Play Store. For developers earning up to $1 million annually, the service fee will generally be 10 percent. That rate also applies to auto-renewing subscriptions. When Google Play Billing is used in the U.S., U.K., or EEA, Google will add a separate 5 percent billing fee, and developers processing payments elsewhere will not pay that additional charge. This means Google’s familiar flat 30 percent commission is disappearing, but developers will not necessarily see a dramatic reduction on every transaction. An in-app purchase from an existing user processed through Google Play Billing can still reach a combined 30 percent. The biggest savings are likely to come from subscriptions, smaller developers covered by the $1 million tier, and companies able to move customers to their own payment infrastructure. Google is also offering lower rates through its Apps Experience and revamped Games Level Up programs. Apps and games that satisfy the company’s requirements can qualify for 15 percent service fees on new-install transactions and 20 percent on existing-install transactions. The criteria include performance and reliability standards, support for additional Android device categories, and selected platform features. Those program rates are scheduled to become available in the initial markets and Australia on September 30. For consumers, the immediate effect will depend on whether developers adopt alternative payments and pass any savings on through lower prices. For developers, however, June 30 begins a more flexible but considerably more complicated Play Store economy in which distribution, billing, install dates, revenue thresholds, and program participation can each affect Google’s final cut. Google is also separately developing a Registered App Stores program designed to simplify the installation of qualifying third-party stores. That initiative is expected to arrive with a major Android release later in 2026 and will launch outside the U.S. first. Google says the rest of the world will receive the changes by September 30, 2027, although billing rates for markets outside the US, UK, and EEA have not yet been announced.
  • Recent Achievements

    • Dedicated
      Scoobystu earned a badge
      Dedicated
    • First Post
      Tom Schmidt earned a badge
      First Post
    • One Month Later
      D0nn13 earned a badge
      One Month Later
    • Rookie
      +ChiefOfNeo went up a rank
      Rookie
    • One Year In
      Tom Schmidt earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      464
    2. 2
      +Edouard
      177
    3. 3
      PsYcHoKiLLa
      124
    4. 4
      Michael Scrip
      81
    5. 5
      Xenon
      76
  • Tell a friend

    Love Neowin? Tell a friend!