Git Product home page Git Product logo

Comments (3)

fregante avatar fregante commented on May 31, 2024 1

Glad you solved it, thanks for reporting back. It'd be great to have this piece of information on Parcel’s docs, which are somewhat lacking: https://parceljs.org/recipes/web-extension/

I added some extra links to the documentation b311e54

from browser-extension-template.

fregante avatar fregante commented on May 31, 2024

A few pointers:

  • You have to use getURL in the content script or else the URLs will be relative to the current website rather than the extension. This also explains why it works without it on an extension page
  • it appears that getURL is "not supported" by parcel: parcel-bundler/parcel#5758 (comment)
  • the getURL example with the hashed filename works because it's ignored by Parcel and you're providing the final URL to it, so it's natively supported by the browser

Have you tried this?

import logo from "./blah blah/logo.png"

<img src={browser.runtime.getURL(logo)}/>

The logo variable will be set by Parcel to "/logo.abcd56.png" and that's a valid string to pass to getURL, you just need to make sure it points to the right element in the distribution folder (e.g. if it's inside images/, then also include that: getURL("images/" + logo)

from browser-extension-template.

goldylucks avatar goldylucks commented on May 31, 2024

that did the trick! πŸš€

// manifest.json
"web_accessible_resources": ["on-install/index.html", "images/*"]

// OnBoarding.jsx
import logoSrc from "../../images/logo.png"
const logo = browser.runtime.getURL(logoSrc)

maybe add this to the documentation?

(want me to PR that?)

THanks again, you ROCK!

from browser-extension-template.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.