NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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; }); } }); })();