小报童解除文本无法选择的限制

gpt来帮我写的简单脚本

// ==UserScript==
// @name         小报童解除文本无法选择的限制
// @namespace    http://tampermonkey.net/
// @version      202303311512
// @description  gpt来帮我写的简单脚本
// @author       Dulk
// @match        https://xiaobot.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xiaobot.net
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.innerHTML = '.forbidd { user-select: text !important; }';
    document.head.appendChild(style);
    
})();