Enables text selection and copying on all parts of Reddit pages by overriding CSS rules.
// ==UserScript==
// @name Reddit Full Text Copy Enabler
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Enables text selection and copying on all parts of Reddit pages by overriding CSS rules.
// @author torch
// @match *://*.reddit.com/*
// @grant GM_addStyle
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// This function injects CSS that overrides any "user-select: none" rules.
// By using "!important", we ensure this style takes precedence.
// It is applied to all elements (*) on the page.
GM_addStyle(`
* {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
}
`);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址