W3CPlus恢复默认复制

try to take over the world!

目前為 2018-04-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name         W3CPlus恢复默认复制
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.w3cplus.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // 获取全局的jQuery对象
    $ = window.jQuery;
    // DOM加载完成后
    $(document).on('ready',function(){
        // 取消body监听的复制事件
        $('body').off('copy');
    });
})();