Problem Accessing GLTF Asset in Production Firefox Add-on with browser.runtime.getURL

I’m having trouble loading a GLTF asset in my Firefox add-on production build. In my code, I’m trying to construct the URL for the asset using browser.runtime.getURL , but it seems that the fallback is always used, so the GLTF is fetched via a relative path (my dev setup) (e.g., https://SOMEWEBSITE.com/pets/Glub.gltf ) and returns a 404. (‘pets/Glub.gltf’ is the path in my dist)

I’m making a virtual pet add-on for fun :slightly_smiling_face:.

I build my React application using Webpack. The build process compiles all my code into bundles that are output into a specific folder within the extension’s package.

In my application’s entry script, I expose a mounting function on the global object. This function is responsible for rendering the UI into a designated container element. During local development, when such a container is already present on the page, the app auto‑mounts. For production, an injection mechanism (triggered for example by a background process) dynamically creates the container and then calls the mount function to display the UI.

"web_accessible_resources": [
  "pets/Glub.gltf",
]

Has anyone encountered a similar issue when accessing extension-packaged assets (GLTF in this case) via browser.runtime.getURL in production? Any insights on why the browser object might be missing at runtime, or suggestions on how to ensure it’s available so I can correctly resolve the asset URL?

I haven’t dug into this too closely, but I think the problem you’re encountering might be related to the model hosting limitations for the trial ML API. Here’s a relevant quote from the announcement blog post (emphasis mine):

If you want to use another model, you can use any model published on Hugging Face by Xenova or the Mozilla organization. For now, we’ve restricted downloading models from those two organizations, but we might relax this limitation in the future.

Can you share the code where you’re actually trying to retrieve this file?

I ended up generating the correct gltf file url when I inject my app bundle and storing the app URL in a global store at the app root.

Also made sure to copy my gltf file to my dist so that the bundle has it for reference in prod AND ensure this file is a web_accessible_resource in the manifest.

A virtual pet floating around on my page as an addon. :grin:
Full video: https://i.gyazo.com/f2346da98006a1238f254273b9c5accd.mp4

f2346da98006a1238f254273b9c5accd

1 Like

This is good to know! I still haven’t implemented any of the ML stuff yet here but have it ready to go. I have a few ideas I want to try that might lend itself to this virtual pet idea I’m playing with. Thanks for the reply!