Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Array untuk menyimpan URL
- const videoUrls = [];
- // Cari semua baris dalam tabel
- document.querySelectorAll('tbody tr').forEach(row => {
- // Cek apakah kolom pertama mengandung teks "Video URL-No Watermark"
- const firstCell = row.querySelector('td span');
- if (firstCell && firstCell.textContent.trim() === 'Video URL-No Watermark') {
- // Ambil elemen <a> di kolom kedua
- const linkElement = row.querySelector('td a');
- if (linkElement) {
- // URL dari atribut href
- const videoUrl = linkElement.getAttribute('href');
- console.log("Video URL (No Watermark):", videoUrl);
- // Tambahkan URL ke array
- videoUrls.push(videoUrl);
- }
- }
- });
- // Simpan URL ke file teks dan unduh
- if (videoUrls.length > 0) {
- const blob = new Blob([videoUrls.join('\n')], { type: 'text/plain' });
- const link = document.createElement('a');
- link.href = URL.createObjectURL(blob);
- link.download = 'video_urls.txt';
- link.click();
- console.log('File berhasil dibuat dan siap diunduh!');
- } else {
- console.log('Tidak ada URL yang ditemukan.');
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement