Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 19 additions & 40 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,47 +7,26 @@ Steps to Do it:-
2. Scan the QR Code
3. Select the person you want to send the text
4. press clt + shift + j
5. In developer Console paste the code
6. Change the text "Sample Texts" in the code by your message like "Hey Bro!!"
7. Send Enter
Note Make sure your mobile has Internet Connection

5. In developer Console paste the code and press Enter.
6. Enter the text you want to send repeatedly in the alert box.
7. Now enter the number of times you want to send it.

<code>
var count = 100 // Change the Number to change
</code>
<code>
var looper = 0
</code>
<code>
Note Make sure your mobile has Internet Connection

for(looper=0;looper<count;looper++)
</code>
<code>
{
</code>
<code>
window.InputEvent = window.Event || window.InputEvent;
</code>
<code>
var d = new Date();
</code>
<code>
```
var message = prompt("Enter the message");
var count = prompt("Enter the Number of times"); // Change the Number to change
var looper = 0;
for(looper=0;looper<count;looper++)
{
window.InputEvent = window.Event || window.InputEvent;
var d = new Date();
var event = new InputEvent('input', {bubbles: true});
</code>
<code>
var textbox= document.querySelector('#main > footer > div._3pkkz > div._1Plpp > div > div._2S1VP.copyable-
text.selectable-text');
</code>
<code>
textbox.textContent = "Sample Text";
</code>
<code>
var textbox= document.querySelector('#main >footer>div._2i7Ej>div._13mgZ>div._3FeAD>div._3u328 ');

textbox.textContent = message;
textbox.dispatchEvent(event);
</code>
<code>
document.querySelector("#main > footer > div._3pkkz > div > button > span").click();
</code>
<code>
}
</code>
var b = document.querySelectorAll('#main >footer>div._2i7Ej>div.hnQHL')[1];
b.querySelector('button ').click();
}
```
12 changes: 7 additions & 5 deletions SendMultippleTImesToSamePerson.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@
// Note Make sure your mobile has Internet Connection


var count = 100 // Change the Number to change
var looper = 0
var message = prompt("Enter the message");
var count = prompt("Enter the Number of times"); // Change the Number to change
var looper = 0;
for(looper=0;looper<count;looper++)
{
window.InputEvent = window.Event || window.InputEvent;
var d = new Date();
var event = new InputEvent('input', {bubbles: true});
var textbox= document.querySelector('#main > footer > div._3pkkz > div._1Plpp > div > div._2S1VP.copyable-text.selectable-text');
var textbox= document.querySelector('#main >footer>div._2i7Ej>div._13mgZ>div._3FeAD>div._3u328 ');

textbox.textContent = "Sample Text!!";
textbox.textContent = message;
textbox.dispatchEvent(event);
document.querySelector("#main > footer > div._3pkkz > div > button > span").click();
var b = document.querySelectorAll('#main >footer>div._2i7Ej>div.hnQHL')[1];
b.querySelector('button ').click();
}