FLUX.1[dev] with ComfyUI and Stability Matrix | A Geekier Blog
FLUX.1[dev] Stable Diffusion model used with ComfyUI deployed using Dockge or Stability Matrix.
// YouTube bulk unsubscribe fn (async function iife() { // This is the time delay after which the "unsubscribe" button is "clicked"; Change it as per your need! var UNSUBSCRIBE_DELAY_TIME = 2000 /
setTimeout
so it can be await
ed on.ytd-channel-renderer
))
console.log(${channels.length} channels found.
)
var ctr = 0
for (const channel of channels) {
// Get the subscribe button and trigger a "click"
channel.querySelector([aria-label^='Unsubscribe from']
).click()
await runAfterDelay(() => {
// Get the dialog container...
document.getElementsByTagName(yt-confirm-dialog-renderer
)[0]
// and find the confirm button...
.querySelector([aria-label^='Unsubscribe']
).click()
console.log(Unsubsribed ${ctr + 1}/${channels.length}
)
ctr++
}, UNSUBSCRIBE_DELAY_TIME)
}
})()