javascript 通过电报网发送垃圾电报

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 通过电报网发送垃圾电报相关的知识,希望对你有一定的参考价值。

//spam message the chats with thirugram.js 
//open up telegram web and go to the chat you want to spam 
//open console ( Ctrl + Shift + J )
//execute the code 
var message = ""; //spam message 
var interval = 1  ; // in seconds 
var count = 10 ; //number of times to send
var notifyInterval = 5 ; //notify 
var i = 0 ;
var timer = setInterval(function(){
	document.getElementsByClassName('composer_rich_textarea')[0].innerHTML = message;
	$('.im_submit').trigger('mousedown');	
	i++;
	if( i  == count )
	clearInterval(timer);
	if( i % notifyInterval == 0)
	console.log(i + ' MESSAGES SENT');
} , interval * 1000 ) ;
//BTW , this is how I sent 10,000 Happy birthday wishes to my friend.

以上是关于javascript 通过电报网发送垃圾电报的主要内容,如果未能解决你的问题,请参考以下文章

尝试通过电报机器人发送消息时出现语法错误

电报地理位置

我无法访问我在电报机器人中使用 getupdates 发送的消息

删除电报机器人发送的传出消息(电报,python)

电报中是不是可以通过按钮复制到剪贴板?

使用电报机器人 api、python 3 和 JobQueue 将消息发送到通道的方法