midnightify-firefox/main.js
2022-08-19 08:49:30 +10:00

8 lines
213 B
JavaScript

console.log("The extension is up and running");
var images = document.getElementsByTagName('img')
for (elt of images){
elt.src = `${browser.runtime.getURL("midnight.gif")}`
elt.alt = 'an alt text'
}