Copy & Ignore 'text-transform' CSS

Copy & Ignore 'text-transform' CSS⁢

当前为 2017-06-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Copy & Ignore 'text-transform' CSS
  3. // @namespace Royalgamer06
  4. // @version 1.0
  5. // @description Copy & Ignore 'text-transform' CSS⁢
  6. // @author Royalgamer06 <https://royalgamer06.ga>
  7. // @include *
  8. // @run-at document-start
  9. // @grant none
  10. // @require http://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js
  11. // ==/UserScript==
  12.  
  13. // ==Code==
  14. this.$ = this.jQuery = jQuery.noConflict(true);
  15. document.addEventListener("copy", function(e){
  16. e.clipboardData.setData("text/plain", $(e.target).text());
  17. e.preventDefault();
  18. });
  19. // ==/Code==