Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

144
Vistas
Why does the location of adding the onClicked listener affect the speed of the code?

Both versions of this code add an event listener to a context menu item. I was wondering what the differences were, and why version 1 is always loading the popup 5x faster than version 2.


Version 1 (Fast):

chrome.runtime.onInstalled.addListener(() => {
    chrome.contextMenus.create({
        id: "create-popup-from-page",
        title: "Popup From Page",
        contexts: ["all"],
    });
});
chrome.contextMenus.onClicked.addListener((pageUrl) => {
    createPopupFromUrl(pageUrl.pageUrl.toString());
});

Version 2 (Slow):

chrome.runtime.onInstalled.addListener(() => {
    chrome.contextMenus.create({
        id: "create-popup-from-page",
        title: "Popup From Page",
        contexts: ["all"],
    });
    chrome.contextMenus.onClicked.addListener((pageUrl) => {
        createPopupFromUrl(pageUrl.pageUrl.toString());
    });
});
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda