Skip to content

Instantly share code, notes, and snippets.

@yukiarimo
yukiarimo / webnovel-downloader.js
Created March 14, 2024 20:52
Web novel Downloader
function extractAndDownloadAllChapters() {
// Find all containers that hold chapter text
const chapterContainers = document.querySelectorAll('.cha-words');
// Initialize an array to hold all chapter texts
let allChaptersText = [];
// Iterate over each chapter container
chapterContainers.forEach(container => {
// Get all paragraph elements within the container