imgfixer/data_src.js

21 lines
479 B
JavaScript
Raw Normal View History

2020-08-24 12:44:52 +00:00
// ==UserScript==
// @name data-src Image Fixer
2020-08-24 12:44:52 +00:00
// @version 1
// @grant none
// @match https://www.atlasobscura.com/*
// @match https://hayleyisaghost.co.uk/*
2021-04-26 16:50:41 +00:00
// @match https://threadreaderapp.com/*
2020-08-24 12:44:52 +00:00
// ==/UserScript==
function fixImages() {
for (let img of document.getElementsByTagName('img')) {
let imgUrl = img.getAttribute('data-src');
if (imgUrl) {
img.setAttribute('src', imgUrl);
img.style.height = 'auto';
}
}
}
fixImages();