您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
enter something useful
// ==UserScript== // @name bilibli 发弹幕无限制 // @namespace http://bumaociyuan.github.io/ // @version 0.2 // @description enter something useful // @author bumaociyuan // @match http://www.bilibili.com/video/* // @grant none // ==/UserScript== (function($) { var t = window.setInterval(function() { if ($(".ABP-Comment-Input").length > 0) { window.clearInterval(t); console.log('done'); var input = $(".ABP-Comment-Input"); input.keypress(function(event){ if(event.which == 13){ setTimeout(function(){ input.removeAttr('disabled'); input.focus(); },200) } }); } console.log('waiting'); }, 100); })(jQuery);