Skip to content
Advertisement

delete dynamically added content when checkbox in popup.html is unchecked (manifest v3)

I am injecting a JS file and CSS when a checkbox in popup.html is checked. This works.

JavaScript

The script loops through all the img elements on the page and positions a DIV with a class under each image:

Injected JS

JavaScript

If the checkbox is unchecked the style sheet is removed. I also want to remove the injected DIV.

If I add the following JS to Chrome tools the DIV is removed.

JavaScript

However, if I use this in the else (unchecked) section of the popup.js, it does not work.

Can someone offer any help on getting this to work please.

Advertisement

Answer

Fixed

Don’t declare as var, let or const.

imgElements = document.querySelectorAll(“img”); showAltText = document.createElement(“div”);

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement