Copy & Ignore 'text-transform' CSS

Copy & Ignore 'text-transform' CSS⁢

目前为 2017-06-03 提交的版本。查看 最新版本

// ==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==