Greasy Fork is available in English.

抖音摸鱼奎恩弹幕加一

抖音直播间摸鱼奎恩(Mr.Quin)添加弹幕加一功能

// ==UserScript==
// @name         抖音摸鱼奎恩弹幕加一
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  抖音直播间摸鱼奎恩(Mr.Quin)添加弹幕加一功能
// @author       You
// @match        https://live.douyin.com/200525029536
// @icon         https://www.google.com/s2/favicons?sz=64&domain=douyin.com
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    $(document).on("click", ".webcast-chatroom___content-with-emoji-text", function(){
        $(".webcast-chatroom___textarea").focus();
        $(".webcast-chatroom___textarea").trigger("input").val($(this).text());
    });
})();