🔥🔥🔥文本选中复制(通用)🔥🔥🔥

文本选中复制通用版本,适用于大多数网站

  1. // ==UserScript==
  2. // @name 🔥🔥🔥文本选中复制(通用)🔥🔥🔥
  3. // @name:en Text Copy Universal
  4. // @name:zh 🔥🔥🔥文本选中复制(通用)🔥🔥🔥
  5. // @description 文本选中复制通用版本,适用于大多数网站
  6. // @description:en Text copy general version, suitable for most websites.
  7. // @description:zh 文本选中复制通用版本,适用于大多数网站
  8. // @namespace https://github.com/WindrunnerMax/TKScript
  9. // @version 1.1.3
  10. // @author Czy
  11. // @match http://*/*
  12. // @match https://*/*
  13. // @supportURL https://github.com/WindrunnerMax/TKScript/issues
  14. // @license GPL License
  15. // @run-at document-end
  16. // @grant GM_registerMenuCommand
  17. // @grant GM_unregisterMenuCommand
  18. // @grant GM_notification
  19. // ==/UserScript==
  20. (function () {
  21. 'use strict';
  22.  
  23. function styleInject(css, ref) {
  24. if ( ref === void 0 ) ref = {};
  25. var insertAt = ref.insertAt;
  26.  
  27. if (!css || typeof document === 'undefined') { return; }
  28.  
  29. var head = document.head || document.getElementsByTagName('head')[0];
  30. var style = document.createElement('style');
  31. style.type = 'text/css';
  32.  
  33. if (insertAt === 'top') {
  34. if (head.firstChild) {
  35. head.insertBefore(style, head.firstChild);
  36. } else {
  37. head.appendChild(style);
  38. }
  39. } else {
  40. head.appendChild(style);
  41. }
  42.  
  43. if (style.styleSheet) {
  44. style.styleSheet.cssText = css;
  45. } else {
  46. style.appendChild(document.createTextNode(css));
  47. }
  48. }
  49.  
  50. var css_248z = ".__copy-currency-container{background-color:#4c98f7;border-radius:3px;bottom:0;display:flex;flex-direction:column;left:-150px;position:fixed;transition:all .3s;width:150px;z-index:9999999999}.__copy-currency-container:before{background-color:#4c98f7;border-radius:20px;content:\"\";cursor:pointer;height:20px;position:absolute;right:-6px;top:calc(50% - 10px);width:20px}.__copy-currency-container:hover{left:0}.__copy-currency-container>.__copy-currency-button{border:1px solid #fff;border-radius:3px;color:#fff!important;cursor:pointer;font-size:12px!important;margin:5px;padding:5px 3px 5px 4px;text-align:center;user-select:none;z-index:9999999999}";
  51. styleInject(css_248z);
  52.  
  53. const STORAGE_VALUE = {
  54. OPEN: "true",
  55. CLOSE: "false"
  56. };
  57. var BUTTON_STATUS = /* @__PURE__ */ ((BUTTON_STATUS2) => {
  58. BUTTON_STATUS2[BUTTON_STATUS2["OPEN"] = 0] = "OPEN";
  59. BUTTON_STATUS2[BUTTON_STATUS2["CLOSE"] = 1] = "CLOSE";
  60. return BUTTON_STATUS2;
  61. })(BUTTON_STATUS || {});
  62. const STORAGE_KEY_PREFIX = "copy-currency--";
  63. const register = (controllers) => {
  64. const container = document.createElement("div");
  65. container.className = "__copy-currency-container";
  66. document.body.appendChild(container);
  67. controllers.forEach((controller) => {
  68. const button = document.createElement("div");
  69. button.className = "__copy-currency-button";
  70. const localHookInfo = localStorage.getItem(STORAGE_KEY_PREFIX + controller.storageKey);
  71. controller.status = localHookInfo === STORAGE_VALUE.OPEN ? 1 /* CLOSE */ : 0 /* OPEN */;
  72. const handler = () => {
  73. if (controller.status === 1 /* CLOSE */) {
  74. controller.openFunction();
  75. controller.status = 0 /* OPEN */;
  76. button.textContent = controller.closeName;
  77. localStorage.setItem(STORAGE_KEY_PREFIX + controller.storageKey, STORAGE_VALUE.OPEN);
  78. } else {
  79. controller.closeFunction();
  80. controller.status = 1 /* CLOSE */;
  81. button.textContent = controller.openName;
  82. localStorage.setItem(STORAGE_KEY_PREFIX + controller.storageKey, STORAGE_VALUE.CLOSE);
  83. }
  84. };
  85. handler();
  86. button.addEventListener("click", handler);
  87. container.appendChild(button);
  88. });
  89. };
  90.  
  91. const styles = {
  92. insertCSS: (id, css) => {
  93. const style = document.createElement("style");
  94. style.id = id;
  95. style.innerText = css;
  96. const [body] = document.getElementsByTagName("body");
  97. if (body) {
  98. body.appendChild(style);
  99. } else {
  100. window.addEventListener("DOMContentLoaded", () => document.body.appendChild(style));
  101. }
  102. },
  103. removeCSS: (id) => {
  104. const style = document.getElementById(id);
  105. style && style.remove();
  106. }
  107. };
  108.  
  109. const stopNativePropagation = (event) => event.stopPropagation();
  110. const CONTROLLER_MAP = [
  111. {
  112. status: BUTTON_STATUS.CLOSE,
  113. storageKey: "selectstart-and-copy",
  114. openName: "✅ 启动解除复制限制",
  115. closeName: "❌ 关闭解除复制限制",
  116. openFunction: () => {
  117. window.addEventListener("selectstart", stopNativePropagation, true);
  118. window.addEventListener("copy", stopNativePropagation, true);
  119. styles.insertCSS(
  120. STORAGE_KEY_PREFIX + "selectstart-and-copy",
  121. "*{user-select: auto !important;-webkit-user-select: auto !important;}"
  122. );
  123. },
  124. closeFunction: () => {
  125. window.removeEventListener("selectstart", stopNativePropagation, true);
  126. window.removeEventListener("copy", stopNativePropagation, true);
  127. styles.removeCSS(STORAGE_KEY_PREFIX + "selectstart-and-copy");
  128. }
  129. },
  130. {
  131. status: BUTTON_STATUS.CLOSE,
  132. storageKey: "contextmenu",
  133. openName: "✅ 启动解除右键限制",
  134. closeName: "❌ 关闭解除右键限制",
  135. openFunction: () => window.addEventListener("contextmenu", stopNativePropagation, true),
  136. closeFunction: () => window.removeEventListener("contextmenu", stopNativePropagation, true)
  137. },
  138. {
  139. status: BUTTON_STATUS.CLOSE,
  140. storageKey: "keydown",
  141. openName: "✅ 启动解除键盘限制",
  142. closeName: "❌ 关闭解除键盘限制",
  143. openFunction: () => window.addEventListener("keydown", stopNativePropagation, true),
  144. closeFunction: () => window.removeEventListener("keydown", stopNativePropagation, true)
  145. }
  146. ];
  147. (function() {
  148. register(CONTROLLER_MAP);
  149. })();
  150.  
  151. }());

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址