Twitcasting Easy Send

트윗캐스팅에서 엔터키를 전송으로, Ctrl+엔터키를 줄바꿈으로 변경합니다.

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

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

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

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

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Twitcasting Easy Send
// @namespace    https://twitter.com/72chihyaKR
// @version      1.01
// @description  트윗캐스팅에서 엔터키를 전송으로, Ctrl+엔터키를 줄바꿈으로 변경합니다.
// @author       72chihya
// @match        https://twitcasting.tv/*
// @exclude      https://twitcasting.tv/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=twitcasting.tv
// @grant        none
// @license      MIT 
// ==/UserScript==


const handleEvent = (e) => {
    const area = document.querySelectorAll(".tw-comment-post textarea.tw-textarea")[0]
    const button = document.querySelectorAll(".tw-comment-post button.tw-button-primary")[0]

    if(!area || !button || document.activeElement !== area){
        return
    }

    if(e.keyCode === 13){
        e.preventDefault()

        if(e.ctrlKey){
            var currentValue = area.value
            var caretPosition = area.selectionStart
            var newValue = currentValue.substring(0, caretPosition) + '\n' + currentValue.substring(caretPosition)
            area.value = newValue
            area.selectionStart = caretPosition + 1
            area.selectionEnd = caretPosition + 1
        }else{
            if(area.value !== ""){
                button.click()
            }
        }
    }
}

(function() {
    'use strict'

    document.addEventListener("keydown", handleEvent)
})();