Last active
June 6, 2026 17:21
-
-
Save jenishngl/3c57938bc479d7a45d37aa80a4ff85e5 to your computer and use it in GitHub Desktop.
how to fetch all drive links from Jackie chan Tamilcartoons episode listing page
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 characters
| // run the below in the console window of the episode listing page | |
| // for example https://links.tamilcartoons.in/jackie-chan-adventure-season-1-episodes-in-tamil | |
| const cards = document.querySelectorAll("div.jc-ep-card"); | |
| for (const card of cards){ | |
| const title = card.querySelector("div.jc-details").innerText | |
| const link = card.querySelector("a.jc-btn"); | |
| let url = link.href | |
| const urlParam = url.split("?")[1].slice(4) | |
| console.log(title + " - " + atob(urlParam)) | |
| } | |
| // it should list all the episodes like the below | |
| // Jackie Chan Adventures season 01 Episode 01 | |
| // The Dark Hand - https://drive.google.com/file/d/1nLmSVEislHxbkwx4qVbPiAB01XJB-Wgk/view | |
| // Jackie Chan Adventures season 01 Episode 02 | |
| // The Power Within - https://drive.google.com/file/d/1nKCGujPcemxez0cBLT_8CHuTX0gGxKH7/view | |
| // Jackie Chan Adventures season 01 Episode 03 | |
| // The Mask of El Toro - https://drive.google.com/file/d/1n2FXLuOHJJqm8AlOB1xktXEg6qJvtXd8/view | |
| // Jackie Chan Adventures season 01 Episode 04 | |
| // Enter The Viper - https://drive.google.com/file/d/1n4sFbI2lPkNvbLNkiyfzjUcRJ3FAkrct/view | |
| // Jackie Chan Adventures season 01 Episode 05 | |
| // Shell Game - https://drive.google.com/file/d/1nH8C7ONglky-yufKN3G8Y_zrFaCk0Nl6/view | |
| // Jackie Chan Adventures season 01 Episode 06 | |
| // Project A - https://drive.google.com/file/d/1nH4vNHgBJpCzumx54s4jtKd6n_21bkF_/view | |
| // Jackie Chan Adventures season 01 Episode 07 | |
| // Bullies - https://drive.google.com/file/d/1nGpC5kmhWfVbYwJMBJEn1dR_MP6yz2E6/view | |
| // Jackie Chan Adventures season 01 Episode 08 | |
| // Tough Break - https://drive.google.com/file/d/1nCpk2OYzqCexvEzP9M6YzPcZvpagI2rJ/view | |
| // Jackie Chan Adventures season 01 Episode 09 | |
| // The Rock - https://drive.google.com/file/d/1nCPZGpJqrC4Ln129EgILbaQlbmbt-IEo/view | |
| // Jackie Chan Adventures season 01 Episode 10 | |
| // The Jade Monkey - https://drive.google.com/file/d/1nBYtZQ9OBPSPGPv0kIHDAIC0tWuixIrI/view | |
| // Jackie Chan Adventures season 01 Episode 11 | |
| // Dog & Piggy - https://drive.google.com/file/d/1mvy5pHrSu4ZqicPZ4lwR9A3-ixH0mKZT/view | |
| // Jackie Chan Adventures season 01 Episode 12 | |
| // Tiger & PussyCat - https://drive.google.com/file/d/1mu2GxN7O0i3IscDS5YGM81vLIAIcKGMG/view | |
| // Jackie Chan Adventures season 01 Episode 13 | |
| // Day of Dragon - https://drive.google.com/file/d/1mnQOLbCWDk_PyGa56TbNQgOah8CcPTR1/view |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment