Skip to content

Instantly share code, notes, and snippets.

View GuillaumeLeon's full-sized avatar

Leon Guillaume GuillaumeLeon

View GitHub Profile
@GuillaumeLeon
GuillaumeLeon / Remove Didomi cookies popup
Created July 29, 2023 00:11
Didomi is a shitty company that forces peeps to either allow complete intrusive cookies or pay to access the website (probably not RGPD friendly but nobody cares)
class ClassWatcher {
constructor(targetNode, classToWatch, classAddedCallback, classRemovedCallback) {
this.targetNode = targetNode
this.classToWatch = classToWatch
this.classAddedCallback = classAddedCallback
this.classRemovedCallback = classRemovedCallback
this.observer = null
this.lastClassState = targetNode.classList.contains(this.classToWatch)