Selectable

Allows you to copy all the texts! Inspired by Chrome extension https://chrome.google.com/webstore/detail/selectable-for-fanfiction/jcidlhgdoojamkbpmhbpgldmajnobefd/related

  1. // ==UserScript==
  2. // @name Selectable
  3. // @namespace https://gf.qytechs.cn/en/users/703184-floriegl
  4. // @version 1.0
  5. // @description Allows you to copy all the texts! Inspired by Chrome extension https://chrome.google.com/webstore/detail/selectable-for-fanfiction/jcidlhgdoojamkbpmhbpgldmajnobefd/related
  6. // @author floriegl
  7. // @match http://*/*
  8. // @match https://*/*
  9. // @license MIT
  10. // @run-at document-start
  11. // @grant unsafeWindow
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function setUserSelect() {
  18. document.querySelectorAll('*').forEach(function(ele) {
  19. const compStyle = window.getComputedStyle(ele, null);
  20. if(compStyle.webkitUserSelect == 'none' || compStyle.userSelect == 'none') {
  21. ele.style.setProperty('user-select', 'auto', 'important');
  22. }
  23. });
  24. }
  25. window.setTimeout(setUserSelect, 1000);
  26. })();

QingJ © 2025

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