// ==UserScript== // @name acfun评论翻转 // @namespace http://www.acfun.cn // @version 0.2 // @description 增加按钮使评论翻转 // @author 星雨漂流 // @match http://www.acfun.cn/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var btnStr = '
'; $("#toolbar").prepend(btnStr); $("#toolbar").css({"height": "180px!important"}); $("#flipBtn").click(function(){ var editor = $("#editor"), text = editor.text(); var textArr = text.split(""), flipArr = textArr.reverse(); flipArr.push("←"); var flipText = flipArr.join(""); $("#editor p").contents().filter(function() { return this.nodeType == 3; }).remove(); editor.prepend(flipText); }); })();