// ==UserScript==// @name 小报童Copy-able// @namespace http://tampermonkey.net/// @version 2024-02-19// @description try to take over the world!// @author zy// @match https://xiaobot.net/*// @icon https://www.google.com/s2/favicons?sz=64&domain=xiaobot.net// @grant none// ==/UserScript== (function() { /** @author: zy @email:[email protected] **/ 'use strict'; function enableTextSelection() { var elements = document.querySelectorAll('.post, .post_page, .forbidd'); elements.forEach(function(element) { element.style.userSelect = 'text'; }); } function createEnableButton() { var button = document.createElement('button'); button.textContent = 'Enable Text Selection'; button.style.position = 'fixed'; button.style.top = '10px'; button.style.right = '10px'; button.addEventListener('click', enableTextSelection); document.body.appendChild(button); } createEnableButton();})();