Copy & Ignore 'text-transform' CSS
当前为
// ==UserScript==
// @name Copy & Ignore 'text-transform' CSS
// @namespace Royalgamer06
// @version 1.0
// @description Copy & Ignore 'text-transform' CSS
// @author Royalgamer06 <https://royalgamer06.ga>
// @include *
// @run-at document-start
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js
// ==/UserScript==
// ==Code==
this.$ = this.jQuery = jQuery.noConflict(true);
document.addEventListener("copy", function(e){
e.clipboardData.setData("text/plain", $(e.target).text());
e.preventDefault();
});
// ==/Code==