// @namespace http://tampermonkey.net/
// @description try to take over the world!
// @match https://xiaobot.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=xiaobot.net
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);