luxcem / Fix seloger.com

// ==UserScript==
// @name         Fix seloger.com
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove stupid paste restriction
// @author       You
// @match        http://www.seloger.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('#persoModuleContent').bind("DOMSubtreeModified",function(){
        if($(".disablecopypaste").length) {
            $(".disablecopypaste").bind("copy paste", function(e) {
                var clipboardData = e.clipboardData || window.clipboardData;
                var pastedData = clipboardData.getData('Text');
                return pastedData;
            });
        }
    });
})();