Introduction
Introduction Statistics Contact Development Disclaimer Help
gamekings.js - firefox-fix-web - Firefox extension: fix web
git clone git://git.codemadness.org/firefox-fix-web
Log
Files
Refs
README
LICENSE
---
gamekings.js (392B)
---
1 (function() {
2
3 Array.from(document.querySelectorAll("#videoplayer[data-url]")).map(func…
4 var url = v.getAttribute("data-url") || "";
5 var thumb = v.getAttribute("data-thumb") || "";
6 if (url.length && thumb.length) {
7 var a = document.createElement("a");
8 a.href = url;
9 a.innerHTML = "<img src=\"" + thumb + "\" alt=\"\" />";
10
11 v.parentNode.replaceChild(a, v);
12 }
13 });
14
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.