Copy & Ignore textTransform property

Ignore the textTransform property while copying some text.

  1. // ==UserScript==
  2. // @name Copy & Ignore textTransform property
  3. // @namespace Royalgamer06
  4. // @version 1.1.0
  5. // @description Ignore the textTransform property while copying some text.
  6. // @author Royalgamer06 <https://royalgamer06.ga>
  7. // @include *
  8. // @run-at document-start
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. // ==Code==
  13. document.addEventListener("copy", function(e) {
  14. e.target.style.textTransform = "none";
  15. setTimeout(function() {
  16. e.target.style.textTransform = "";
  17. }, 1);
  18. });
  19. // ==/Code==