MikaGoesDown@burggit.moe to Ask Burggit!@burggit.moeEnglish · edit-21 year agoHow do you disable blur on NSFW posts?message-squaremessage-square7fedilinkarrow-up12arrow-down10file-text
arrow-up12arrow-down1message-squareHow do you disable blur on NSFW posts?MikaGoesDown@burggit.moe to Ask Burggit!@burggit.moeEnglish · edit-21 year agomessage-square7fedilinkfile-text
minus-squareNazrin@burggit.moelinkfedilinkEnglisharrow-up2·edit-21 year agoFrom a different thread, this one supposedly auto expands images: // ==UserScript== // @name Expand Images // @match https://burggit.moe/* // ==/UserScript== // Permission to use, copy, modify, and/or distribute this software for // any purpose with or without fee is hereby granted. // Start the script poll(); function poll() { expand(); setTimeout(poll, 200); } function expand() { const posts = document.querySelectorAll("div.post-listing"); for (const post of posts) { const imgThumbnail = post.querySelector("button.thumbnail"); const isImage = imgThumbnail !== null; const isExpanded = post.childElementCount > 2; if (isImage && !isExpanded) { imgThumbnail.click(); }; } }
minus-squareMikaGoesDown@burggit.moeOPlinkfedilinkEnglisharrow-up2·1 year agoVery nice, it does! Mind linking OP?
minus-squareNazrin@burggit.moelinkfedilinkEnglisharrow-up3·1 year agohttps://burggit.moe/comment/64744
From a different thread, this one supposedly auto expands images:
// ==UserScript== // @name Expand Images // @match https://burggit.moe/* // ==/UserScript== // Permission to use, copy, modify, and/or distribute this software for // any purpose with or without fee is hereby granted. // Start the script poll(); function poll() { expand(); setTimeout(poll, 200); } function expand() { const posts = document.querySelectorAll("div.post-listing"); for (const post of posts) { const imgThumbnail = post.querySelector("button.thumbnail"); const isImage = imgThumbnail !== null; const isExpanded = post.childElementCount > 2; if (isImage && !isExpanded) { imgThumbnail.click(); }; } }
Very nice, it does! Mind linking OP?
https://burggit.moe/comment/64744