>>108767754
// ==UserScript==
// @name Embedder Unfucker
// @version 1.0.0
//
// @match https://boards.4chan.org/*/thread/*
// @grant none
//
// @author anon
// @description Makes 4chanx embedders non-selectable so you dont't accidentally copy them
// ==/UserScript==
(function() {
const sheet = new CSSStyleSheet();
sheet.replaceSync(`
.embedder {
user-select: none;
}
`);
document.adoptedStyleSheets = [
...document.adoptedStyleSheets,
sheet
];
})();