Tieba Quick Post

Press Ctrl + Enter to post a thread / comment on Tieba.

当前为 2014-04-05 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name       Tieba Quick Post
// @version    1.0.1
// @description  Press Ctrl + Enter to post a thread / comment on Tieba.
// @match      http://tieba.baidu.com/*
// @author     864907600cc
// @namespace https://greasyfork.org/users/141
// ==/UserScript==

var node,button;
function add_event(){
    node=document.getElementById('ueditor_replace'),button=document.getElementsByClassName('poster_submit')[0];
    node.onfocus=function(){
        node.onkeydown=post_t;
    }
    node.onblur=function(){
        node.onkeydown=false;
    }
}
function post_t(event){
    if (event.ctrlKey==1&&event.keyCode==13) button.click();
}

if(document.getElementById('ueditor_replace'))add_event();
else {
	var editor_wait=window.setInterval(function(){
		if(document.getElementById('ueditor_replace')){
			window.clearInterval(editor_wait);
			add_event();
		}
	},100)
}