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

86
Vistas
Javascript not modifying Youtube web page

I'm learning how to create firefox extensions. I just started developing one to delete youtube comments.

manifest json:

{
        "name": "Comment-Blocker",
        "version": "1.1",
        "manifest_version": 2,

        "description": "Blocks comments on an youtube video by specified user",

        "content_script": [
                {
                        "matches": ["*://*.youtube.com/watch?v=*"],
                        "js": ["/commentBlocker.js"]
                }
        ],

        "browser_action": {
                "browser_style": true,
                "default_icon": {
                        "48": "/icon.png"
                },
                "default_title": "Comment Deleter",
                "default_popup": "/popup.html"
        },

        "permissions": [
                "*://www.youtube.com/watch?v=*",
                "storage",
                "activeTab"
        ]

}

commentBlocker.js:

var comments = document.getElementById("contents").getElementsByClassName("style-scope ytd-item-section-renderer");

for(i = 0; i < comments.length; i++) // length does not include reply chains
{
        var name = comments[i].querySelector('#author-text');
        if(name.href == 'https://www.youtube.com/channel/UC-CrrqEdTkOP0BD6_KQ64Uw')
        {
                comments[i].hidden = true;
        }
}

Problem is, when I load the temporary add-on the top comment is not dissapearing. When I write the instructions in console it works. What am I doing wrong?

youtube video used for testing: https://www.youtube.com/watch?v=Jk71bPz5VLo

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