Skip to content

Instantly share code, notes, and snippets.

@ncautotest
Created December 2, 2025 19:38
Show Gist options
  • Select an option

  • Save ncautotest/be48883daf404942f325cd79678f2455 to your computer and use it in GitHub Desktop.

Select an option

Save ncautotest/be48883daf404942f325cd79678f2455 to your computer and use it in GitHub Desktop.
bookmarklet to automatically uncheck all consent options
! function() {
"use strict";
function e() {
document.querySelectorAll('input[type="checkbox"]:checked').forEach((e => {
e.checked = !1, console.log(e)
}))
}
e();
let c = 0;
const t = setInterval((() => {
e(), c++, c >= 10 && clearInterval(t)
}), 500)
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment