Stop sites from disabling selection of text
// ==UserScript==
// @name Force Select 2
// @version 1.1
// @description Stop sites from disabling selection of text
// @author Ngerax
// @match *://www.chimica-online.it/*
// @grant none
// @namespace https://greasyfork.org/users/1104904
// ==/UserScript==
const myTimeout = setTimeout(sus, 2000);
function sus() {
document.onselectstart = ""
}