fiximg.js - firefox-fix-web - Firefox extension: fix web | |
git clone git://git.codemadness.org/firefox-fix-web | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
fiximg.js (591B) | |
--- | |
1 (function() { | |
2 Array.from(document.querySelectorAll("img[data-mediumthumb]")).m… | |
3 img.src = img.getAttribute("data-mediumthumb"); | |
4 img.style.display = null; // reset inline display style | |
5 }); | |
6 | |
7 Array.from(document.querySelectorAll("img[data-original]")).map(… | |
8 img.src = img.getAttribute("data-original"); | |
9 img.style.display = null; // reset inline display style | |
10 }); | |
11 | |
12 Array.from(document.querySelectorAll("img[data-src]")).map(funct… | |
13 img.src = img.getAttribute("data-src"); | |
14 img.style.display = null; // reset inline display style | |
15 }); | |
16 })(); |