Tieba Quick Post

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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)
}