Skip to main content
Todd Duane: Cameron CCV Channel 2
Redialed in and currently retubed w a nice old Mullard in V1. Gibson R8 Rebel Yell bridge '57 Classic neck Evidence Audio cables Mesa Standard V30/65's
.
Cameron CCV Channel 2
// response.text())
.then(html => {
// Extremely aggressive search: Catches /embed/, ?v=, /v/, /vi/, youtu.be/, and /shorts/
let match = html.match(/(?:v=|v\/|vi\/|vi=|youtu\.be\/|embed\/|shorts\/)([a-zA-Z0-9_-]{11})/);
if (match && match[1]) {
let videoId = match[1];
// Using YouTube's primary global server (bypasses UK/EU routing issues)
let hqThumb = "https://i.ytimg.com/vi/" + videoId + "/hqdefault.jpg";
// Force the background image and use '!important' so Blogger cannot override it
thumb.style.setProperty('background-image', "url('" + hqThumb + "')", 'important');
console.log("SUCCESS: Applied YT thumbnail for " + postUrl);
} else {
console.warn("FAILED: Could not find a YouTube ID in the HTML of " + postUrl);
}
})
.catch(err => console.error("Network error fetching " + postUrl, err));
});
}
// Run immediately
fixThumbnails();
// Check every 2 seconds for newly loaded grid boxes
setInterval(fixThumbnails, 2000);
});
//]]>