Envato Marketplace CKEditor Support

This is a userscript to add the CKEditor to Envato comment and edit forms.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name            Envato Marketplace CKEditor Support
// @author          Adrian Moerchen
// @homepage        https://github.com/scrobbleme/Envato-CKEditor-Support
// @supportURL      https://github.com/scrobbleme/Envato-CKEditor-Support
// @contributionURL   http://codecanyon.net/user/scrobbleme/portfolio?ref=scrobbleme
// @namespace       scrobble.me
// @date            2014-12-14
// @version         1.1.0
// @include         http://activeden.net*
// @include         http://audiojungle.net*
// @include         http://themeforest.net*
// @include         http://videohive.net*
// @include         http://graphicriver.net*
// @include         http://3docean.net*
// @include         http://codecanyon.net*
// @include         http://photodune.net*
// @grant           none
// @description This is a userscript to add the CKEditor to Envato comment and edit forms.
// ==/UserScript==

var head = document.getElementsByTagName("head")[0];
var script_to_load = document.createElement('script');

script_to_load.setAttribute('src', location.protocol + '//cdn.ckeditor.com/4.4.6/standard/ckeditor.js');
script_to_load.onload = function () {
    var selector = '#description, #item_comment_content, #thread_message_content, .js-comment-new-reply-field';
    var editors = document.querySelectorAll(selector);
    for (var i = 0; i < editors.length; i++) {
        CKEDITOR.replace(editors[i]);
    }
};
head.appendChild(script_to_load);

style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = "a.cke_button {height: 25px !important; background: transparent !important;}";
head.appendChild(style);