Skip to content

Instantly share code, notes, and snippets.

@FacuM
Last active October 11, 2021 23:31
Show Gist options
  • Save FacuM/7c807a1ca5fa945709c631c010aad98c to your computer and use it in GitHub Desktop.
Save FacuM/7c807a1ca5fa945709c631c010aad98c to your computer and use it in GitHub Desktop.
Easily skip Google's One Tap cooldown from the browser. This will prevent Google's servers from reporting "supressed_by_user".
// As explained here: https://stackoverflow.com/a/10593045
window.removeCookie = (name) => {
document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:01 GMT;';
}
// This will prevent the cooldown from occuring.
removeCookie('g_state');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment