Left click the tampermonkey icon. Click "Create a new script". Paste in the code. press ctrl-s.
Eat her cookie or eat her cookie?
Ok, I added an autoloop section to https://burggit.moe/post/84267 so that videos always loop.
Feel free to make suggestions on changes. Bring pictures!
``` // ==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==
// Permission to use, copy, modify, and/or distribute this software for // any purpose with or without fee is hereby granted. // If we meet some day, and you think this stuff is worth it, // you can buy me a comfy hoodie in return.
(function() { {var css = [ " .img-blur {", " filter: none !Important;", " }", " .thumbnail {", " height: 160px !Important;", " width: 160px !Important;", " object-fit: contain !important;", " aspect-ratio: initial !important;", " background-color: rgba(0, 0, 0, 0);", " }", " .justify-content-center {", " height: 80px !Important;", " }", " .embed-responsive-item {", " max-height: 90vh;", " width: auto;", " max-width: 100%;", " }", " .my-3 {", " margin-top: 0.1rem !important;", " margin-bottom: -0.3rem !important;", " }", " .d-inline img{", " max-height: 2em !important; ", " max-width: 2em !important; ", " object-fit: scale-down !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); } } } var vids = document.getElementsByTagName("video"); for (var i = 0; i < vids.length; i++) { vids[i].setAttribute("loop", "true"); }
window.addEventListener('click', function() { var vids = document.getElementsByTagName("video"); for (var i = 0; i < vids.length; i++) { vids[i].setAttribute("loop", "true"); } }, false); })(); ```
Or how does linking go? !celebs@lemmynsfw.com some of the early stuff looked like leaks
It might be consensual, I'm mainly referring to https://lemmynsfw.com/c/celebs
To add to this, think: what does this one offer that the one in lemmynsfw does not? I know a lot of reddit stuff that moved over took with them their twenty rules that they grew over the years. A lot of features can be added by reimagining the space and the rules.
Saving this for later: https://burggit.moe/post/10899
``` // ==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); } } } })(); ```