Tieba Quick Post

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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)
}