// ==UserScript==// @name Disable wp-copyprotect and Enable Text Selection// @namespace http://tampermonkey.net/// @version 0.1// @description Disable wp-copyprotect's copy protection features (right-click, mousedown, text selection)// @author ChatGPT// @match *://*/*// @grant none// ==/UserScript==(function(){'use strict';// Disable the disableSelection functionwindow.disableSelection=function(target){// Do nothing (disable it)};// Enable text selectiondocument.body.style.userSelect='auto';// For Firefoxdocument.body.style.MozUserSelect='auto';// For Operadocument.body.onmousedown=null;// For IEdocument.body.onselectstart=null;// Disable the onmousedown event (disable click event)document.onmousedown=null;// Disable the oncontextmenu event (enable right-click menu)document.oncontextmenu=null;// Override the alert function to disable warning messageswindow.alert=function(){};console.log('wp-copyprotect features (text selection, right-click, mousedown) have been disabled.');})();