NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Jungol.co.kr Editor // @namespace lineofkite's userscripts // @version 0.1 // @description replace textarea element with a WYSIWYG editor in jungol.co.kr // @author lineofkite // @license MIT // @match https://*.jungol.co.kr/bbs/write.php* // @match http://*.jungol.co.kr/bbs/write.php* // @require https://cdnjs.cloudflare.com/ajax/libs/jodit/3.4.25/jodit.min.js // ==/UserScript== (function() { 'use strict'; // Your code here... var link = document.createElement("link"); link.rel = "stylesheet"; link.href = "https://cdnjs.cloudflare.com/ajax/libs/jodit/3.4.25/jodit.min.css"; document.getElementsByTagName("head")[0].appendChild(link); var editor = new Jodit("#wr_content", { "language": "en", "buttons": "source,|,bold,strikethrough,underline,italic,|,superscript,subscript,|,ul,ol,|,outdent,indent,|,font,fontsize,brush,paragraph,|,image,file,video,table,link,|,align,undo,redo,|,hr,symbol,preview,about" }); })();