Last active
February 10, 2026 04:03
-
-
Save AymaneHrouch/c29d7a00e7e68f39ed838610695c8d87 to your computer and use it in GitHub Desktop.
Revisions
-
AymaneHrouch revised this gist
Apr 29, 2020 . 1 changed file with 8 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,12 +7,14 @@ -Open the console by pressing F12 and then clicking the console tab -Past the code bellow and press enter. You're welcome :) */ const sub = () => { let btn = document.querySelector(".add.active"); if(btn) { btn.click(); setTimeout('sub()', 500); } else { alert("You have subscribed to all the subreddits successfully"); return; } } setTimeout('sub()', 500); -
AymaneHrouch revised this gist
Apr 29, 2020 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ /* -Visit https://old.reddit.com/subreddits/ using your old account -Copy link address of "multireddit of your subscriptions" It will give you a link address like this: https://old.reddit.com/r/[subreddit1+subreddit2...+subredditN] Please note that if you have a lot of subreddits the link won't work because there's a limit to the link's length, you can simply split it to two or three links -Visit that link (or links) using your new account. -Open the console by pressing F12 and then clicking the console tab -Past the code bellow and press enter. You're welcome :) */ function sub(){ i = 0; -
AymaneHrouch revised this gist
Apr 29, 2020 . 1 changed file with 9 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,12 @@ /* Visit https://old.reddit.com/subreddits/ using your old account Copy link address of "multireddit of your subscriptions" it will give you a link address like this: https://old.reddit.com/r/[subreddit1+subreddit2...+subredditN] Please note that if you have a lot of subreddits the link won't work because there's a limit to the link's length, you can simply split it by making two or three links Log into your new account Open the console by pressing F12 and then clicking the console tab Past the code bellow and press enter. You're welcome :) */ function sub(){ i = 0; if (i<document.querySelectorAll(".add.active").length) { -
AymaneHrouch revised this gist
Apr 3, 2019 . No changes.There are no files selected for viewing
-
AymaneHrouch created this gist
Apr 3, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ // Open the console by pressing F12 and then clicking the console tab // then past the code bellow and press enter. that's it :) function sub(){ i = 0; if (i<document.querySelectorAll(".add.active").length) { document.querySelectorAll(".add.active")[i].click() } i++; setTimeout('sub()', 500); } setTimeout('sub()', 500);