Browse Source

rebuild

pull/4/head
coomdev 2 years ago
parent
commit
d8b0212b8f
  1. 24
      main.user.js

24
main.user.js

@ -7003,7 +7003,7 @@
var IEND = import_buffer2.Buffer.from("IEND");
var tEXt = import_buffer2.Buffer.from("tEXt");
var CUM0 = import_buffer2.Buffer.from("CUM\x000");
var xmlhttprequest = GM_xmlhttpRequest ? GM_xmlhttpRequest : GM ? GM.xmlHttpRequest : GM_xmlhttpRequest;
var xmlhttprequest = typeof GM_xmlhttpRequest != "undefined" ? GM_xmlhttpRequest : GM ? GM.xmlHttpRequest : GM_xmlhttpRequest;
function GM_fetch(...[url, opt]) {
function blobTo(to, blob) {
if (to == "arrayBuffer" && blob.arrayBuffer)
@ -7107,8 +7107,10 @@
if (!res)
return;
let fi = post.querySelector(".file-info");
let a = document.createElement("a");
a.className = "fa fa-eye";
let cf = `
<a class="fa fa-eye">
</a>`;
let a = document.createRange().createContextualFragment(cf).children[0];
let type = await fileTypeFromBuffer(res.data);
let cont;
let w, h;
@ -7131,10 +7133,6 @@
h = cont.height;
}
let contract = () => {
cont.style.width = "auto";
cont.style.height = "auto";
cont.style.maxWidth = "125px";
cont.style.maxHeight = "125px";
};
let expand = () => {
cont.style.width = `${w}px`;
@ -7248,6 +7246,18 @@
});
};
document.addEventListener("4chanXInitFinished", startup);
var customStyles = document.createElement("style");
customStyles.appendChild(document.createTextNode(`
.extractedImg {
width:auto;
height:auto;
max-width:125px;
max-height:125px;
cursor: pointer;
}
`));
document.documentElement.insertBefore(customStyles, null);
})();
/*!
* The buffer module from node.js, for the browser.

Loading…
Cancel
Save