trova risorse e immagini in background
Fri Oct 06 2023 07:47:51 GMT+0000 (Coordinated Universal Time)
Saved by
@dpavone
#javascript
/* log all background images on a page to the console */
let bgimg = performance.getEntriesByType('resource')
.filter(rs => rs.initiatorType == 'css')
.map(rs => {
return {
name: rs.name,
initiator: rs.initiatorType
}
}) || [];
(bgimg.length > 0)?
console.table(bgimg):
console.log('No background images on this page!');
content_copyCOPY
Comments