{
let btnEl
let imgs = []
{
btnEl = document.createElement('button')
addStyles(btnEl,{
position:'fixed',
right: '1rem',
bottom: '1rem',
padding: '1rem',
background: '#F500A3',
fontSize: '32px',
border: '2px solid white',
color: 'white',
zIndex: 1000000
})
updateButtonText()
btnEl.onclick = addThem
document.body.appendChild(btnEl)
}
$$('img').forEach(checkImg)
const observer = new MutationObserver(function(mutationList, observer) {
for(const mutationItem of mutationList) {
if(mutationItem.target.matches('img')) {
checkImg(mutationItem.target)
}
const subImgs = $$('img', mutationItem.target)
subImgs.forEach(checkImg)
}
})
observer.observe(
document.body,
{
attributes: true,
childList: true,
subtree: true
}
)
function updateButtonText() {
btnEl.textContent = 'Add ' + imgs.length + ' images'
}
function checkImg(imgNode) {
if(!imgs.includes(imgNode.src)) {
imgs.push(imgNode.src)
updateButtonText()
console.log(imgs.length)
}
}
function addThem() {
let el = $$('#img-download-thing-s23F2313x0')[0]
if(el == undefined) {
el = document.createElement('div')
el.id = 'img-download-thing-s23F2313x0'
document.body.appendChild(el)
}
empty(el)
for(const imgSrc of imgs) {
const imgEl = document.createElement('img')
imgEl.src = imgSrc
el.appendChild(imgEl)
}
}
function addStyles(el, styleObj) {
for(let k in styleObj) {
el.style[k] = styleObj[k]
}
}
function $$(selector, rootNode=document) {
return Array.from(rootNode.querySelectorAll(selector))
}
function empty(el) {
let fc = el.firstChild
while(fc) {
el.removeChild(fc)
fc = el.firstChild
}
}
}
|