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

添加脚本参考 GPT导出插件

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// ==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();
})();