// ==UserScript==
// @name         burggit
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://burggit.moe/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=burggit.moe
// @grant        none
// ==/UserScript==

(function() {
{var css = [
    "    .img-blur {",
    "        filter: none !Important;",
    "        max-height: 160px !Important;",
    "    }"
].join("\n");
if (typeof GM_addStyle != "undefined") {
    GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
    PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
    addStyle(css);
} else {
    var node = document.createElement("style");
    node.type = "text/css";
    node.appendChild(document.createTextNode(css));
    var heads = document.getElementsByTagName("head");
    if (heads.length > 0) {
        heads[0].appendChild(node);
    } else {
        // no head yet, stick it whereever
        document.documentElement.appendChild(node);
    }
}
}
})();
  • Endershadow@burggit.moe
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 year ago

    And in case anyone wants a Stylus script for it.

    @-moz-document domain("burggit.moe") {
        .img-blur {
            filter: none;
            -webkit-filter: none;
            -moz-filter: none;
            -o-filter: none;
            -ms-filter: none;
        }
    
        .img-fluid {
            max-height: 100%;
        }
    }
  • neo (he/him)A
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Thanks, yoinking this :p Maybe you should also add this to greasyfork?

  • Burger@burggit.moe
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    Thanks for sharing this. I tried finding out how to make the thumbnails bigger, but Lemmy’s documentation is pretty lacking and so it requires me to dig around on their git repository just to find stuff to configure.