You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just before the comic pages starts loading if this mutation observer is Executed on domain then it logs every direct image urls. However it may fail to capture some urls maybe they got loaded before observer starts.
APPROACH 2:
Scroll comic strip till end and all pages are loaded; Then
// Fetch all resources from the network tab
const resources = window.performance.getEntriesByType('resource');
// Filter out images from the resources
const images = resources.filter(resource => resource.initiatorType === 'img');
// Extract the URLs of images
const imageUrls = images.map(image => image.name);
// Print the URLs of images to console
console.log(imageUrls);
Thanks to anonymous for reporting:
https://www.bilibilicomics.net/episode/6817-the-supreme-wood-nascent-soul
The text was updated successfully, but these errors were encountered: