Introduction
Introduction Statistics Contact Development Disclaimer Help
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 })();
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.