Skip to content

Commit

Permalink
Update readme and details (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidarroyo1234 authored Aug 4, 2024
1 parent 9c08a00 commit 4e24577
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,24 @@ This version utilizes the Instagram API for better performance.
<img src="./assets/copy_code.png" alt="Initial screen" />

3. Once you have copied the code, you can close this page and go to the instagram website

4. Log in into your account and open the developer console or (Ctrl+Shift+J(Windows) || ⌘+⌥+I (Mac os)) and paste the code.

5. You will be met with the following interface:

<img src="./assets/initial.png" alt="Initial screen" />

6. Click "RUN" to start scanning for users who do not follow you back.

7. Once it finishes printing the users, you will be met with the following screen which will show you the results:

<img src="./assets/results.png" alt="Results screen" />

8. If you wish to un-follow any of these users, you can select 1 or more of them via the checkbox next to each user.
8. To add some user to the whitelist, click in the profile image of the user. This will add the user to the whitelist and will not show up in the results anymore.

9. If you wish to un-follow any of these users, you can select 1 or more of them via the checkbox next to each user.

9. With the latest version, you can now tweak and customize the timings of the script. You can do this by clicking on the "Settings" button.
10. With the latest version, you can now tweak and customize the timings of the script. You can do this by clicking on the "Settings" button.

<img src="./assets/settings.png" alt="Settings screen" />
## Notes
Expand Down
2 changes: 1 addition & 1 deletion public/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ function App() {
scrollCycle++;
if (scrollCycle > 6) {
scrollCycle = 0;
setToast({ show: true, text: "Sleeping 10 secs to prevent getting temp blocked" });
setToast({ show: true, text: `Sleeping ${timings.timeToWaitAfterFiveSearchCycles / 1000 } secs to prevent getting temp blocked` });
await sleep(timings.timeToWaitAfterFiveSearchCycles);
}
setToast({ show: false });
Expand Down Expand Up @@ -351,7 +351,7 @@ function App() {
await sleep(Math.floor(Math.random() * (timings.timeBetweenUnfollows * 1.2 - timings.timeBetweenUnfollows)) + timings.timeBetweenUnfollows);

if (counter % 5 === 0) {
setToast({ show: true, text: "Sleeping 5 minutes to prevent getting temp blocked" });
setToast({ show: true, text: `Sleeping ${timings.timeToWaitAfterFiveUnfollows / 1000 } minutes to prevent getting temp blocked` });
await sleep(timings.timeToWaitAfterFiveUnfollows);
}
setToast({ show: false });
Expand Down

0 comments on commit 4e24577

Please sign in to comment.