NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Crims_notatnik // @namespace /crims_notatnik/ // @include http://www.thecrims.com/* // @version 1 // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js // ==/UserScript== var crims_notatnik = localStorage.getItem("crims_notatnik"); $("#user-profile-statusicons").after('<div id="crims_notepad1" style="padding: 5px;"><span style="font-weight:bold;color: #c0b184;">Notatnik:</span><br /><textarea id="crims_notepad" style="width: 130px;height: 100px;">' + crims_notatnik + '</textarea></dic>'); $("#crims_notepad").change(function() { localStorage.setItem("crims_notatnik", $("#crims_notepad").val()); });