async function searchResults(keyword) { const results = []; const response = await fetchv2(`https://www.dora-video.cn/search/${keyword}/`); const html = await response.text(); const regex = /
.*?.*?data-url="(.*?)".*?(.*?)<\/span>/gs; let match; while ((match = regex.exec(html)) !== null) { results.push({ title: (match[3] || "").trim().replace(/a<\/font>||<\/font>/g, " "), image: "https://i.ibb.co/ds7r6YJy/Search-has-no-images.png", href: match[1].trim() }); } return JSON.stringify(results); } async function extractDetails(url) { const results = []; const response = await fetchv2(url); const html = await response.text(); const regex = /