Bring Back [Shift + Enter]

Adds the old post method to post boxes (Shift + Enter)

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Bring Back [Shift + Enter]
// @namespace    pxgamer
// @version      0.3
// @description  Adds the old post method to post boxes (Shift + Enter)
// @author       pxgamer
// @include      *kat.cr/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var arrShortCut = [{ name: 'Post', key: 13, fx: 'post' }];

    var shift = 16; // SHIFT Key
    var shiftKeyActived = false;
    var ta = $('.quicksubmit');
    var isBBaction = false;
    var postAction = false;

    $(document).keyup(function(e) {
        if (e.which == shift) shiftKeyActived = false;
    }).keydown(function(e) {
        if (e.which == shift) shiftKeyActived = true;
        if (shiftKeyActived === true && ta.is(":focus")) {
            jQuery.each(arrShortCut, function(i) {
                if (arrShortCut[i].key == e.which) {
                    exec(arrShortCut[i].fx, ta);
                    return;
                }
            });
        }
    });

    function exec(fx, ta) {
        console.info(fx);
        switch (fx) {
            case 'post':
                isBBaction = false;
                postAction = true;
                break;
            default:
                isBBaction = false;
                postAction = false;
        }
        if (postAction === true) {
            $('form[action^="/community/post/"] div.buttonsline button.siteButton.bigButton[type="submit"]').click();
        }
        postAction = false;
        shiftKeyActived = false;
    }
})();