Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

114
Views
¿Cómo usar un módulo en la extensión de Firefox?

Así que estoy construyendo una extensión muy simple para Firefox. El problema que tengo es que no puedo importar el archivo js que necesito para que funcione.

Estructura de extensión

 root- |-------manifest.json |-------index.html |-------phoenix.js |-------msg.js

Como puedes ver tengo todos los archivos al mismo nivel.

En mi manifiesto, tengo:

 //manifest.json { "manifest_version": 2, "name": "Socket", "version": "1.0", "description": "Simple extension test", "icons": { "48": "icons/border-48.png" }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["phoenix.js", "msg.js"] } ], "background": { "scripts": [ "phoenix.js", "msg.js" ] } }

En mi index.html tengo:

 <!DOCTYPE html> <html> <head> <title>Test</title> <meta charset="uth-8"> </head> <body style="background:black; color:white"> <!-- Msg board --> <!-- Type bar and Send btn --> </body> <script src="./phoenix.js"> </script> <script src="./msg.js"> </script> </html>

En mi msg.js, estoy tratando de importar phoenix.js para crear un socket y conectarme a mi servidor back-end Elixir websocket.

 //msg.js import {Socket} from "phoenix" // I also tried "./phoenix"

Entonces, el gran problema es que parece que no puedo importar el fénix. Traté de tenerlo como guión de fondo y también como guión de contenido.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

"background":[ "phoenix.js", "msg.js" ]

puede necesitar ser:

 "background": { "scripts": [ "phoenix.js", "msg.js" ] }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!