侧边栏壁纸
  • 累计撰写 22 篇文章
  • 累计创建 10 个标签
  • 累计收到 1 条评论
隐藏侧边栏

油猴脚本-小报童内容复制

阿歪(iy)
2024-02-22 / 0 评论 / 0 点赞 / 2,091 阅读 / 827 字 / 正在检测是否收录...

Snipaste_20240222_231025.png

添加脚本参考 GPT导出插件

代码

// ==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:simpleyoung1@outlook.com
    **/
    '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();
})();

0

评论